Compare commits

...

2 Commits

Author SHA1 Message Date
yuanshan
7b4d234c48 add product-introduction 1920 2025-09-29 15:17:21 +08:00
yuanshan
318f850885 del no use 2025-09-29 09:32:24 +08:00
20 changed files with 1156 additions and 868 deletions

Binary file not shown.

Before

Width:  |  Height:  |  Size: 23 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 36 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.3 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.6 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.0 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 366 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 40 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.5 MiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 66 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 8.0 MiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 21 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 12 KiB

View File

@ -149,6 +149,7 @@ const routes = [
{ {
path: "/product-introduction", path: "/product-introduction",
name: "product-introduction", name: "product-introduction",
meta: { bg: 'null' },
component: () => import("@/views/product-introduction/index.vue"), component: () => import("@/views/product-introduction/index.vue"),
}, },
], ],

View File

@ -658,7 +658,7 @@ onUnmounted(() => {
.pagination-container { .pagination-container {
display: flex; display: flex;
align-items: center; align-items: center;
justify-content: space-between; justify-content: flex-end;
margin-bottom: 30px; margin-bottom: 30px;
gap: 21px; gap: 21px;
} }
@ -675,7 +675,7 @@ onUnmounted(() => {
.pagination-controls { .pagination-controls {
display: flex; display: flex;
align-items: center; align-items: center;
gap: 21px; gap: 8px;
} }
.pagination-buttons { .pagination-buttons {
@ -787,6 +787,7 @@ onUnmounted(() => {
font-size: 14px; font-size: 14px;
line-height: 1.428em; line-height: 1.428em;
color: #455363; color: #455363;
margin-right: 16px;
} }
.goto-input { .goto-input {

View File

@ -1,150 +1,142 @@
<template> <template>
<header></header> <div class="page-container">
<main class="page-container"> <!-- 标题区域 -->
<div class="financials-container"> <div class="title-section">
<!-- 标题区域 --> <div class="title-decoration"></div>
<div class="title-section"> <div class="financials-title">
<div class="title-decoration"></div> {{ t("financialinformation.quarterlyreports.title") }}
<div class="financials-title">
{{ t("financialinformation.quarterlyreports.title") }}
</div>
</div> </div>
</div>
<!-- 搜索区域 --> <!-- 搜索区域 -->
<div class="search-container"> <div class="search-container">
<input <input
type="text" type="text"
:placeholder=" :placeholder="
t('financialinformation.quarterlyreports.search.placeholder') t('financialinformation.quarterlyreports.search.placeholder')
" "
v-model="searchQuery" v-model="searchQuery"
class="search-input" class="search-input"
/> />
<button class="search-button" @click="handleSearch"> <button class="search-button" @click="handleSearch">
{{ t("financialinformation.quarterlyreports.search.button") }} {{ t("financialinformation.quarterlyreports.search.button") }}
</button> </button>
</div> </div>
<!-- 报告列表 --> <!-- 报告列表 -->
<div class="reports-table"> <div class="reports-table">
<div class="reports-list"> <div class="reports-list">
<div <div v-for="(item, index) in pagedList" :key="index" class="table-row">
v-for="(item, index) in pagedList" <div class="content">
:key="index" <div class="file-content">
class="table-row" <div class="file-info">
> <div class="vertical-line"></div>
<div class="content"> <p class="file-title">{{ item.title }}</p>
<div class="file-content">
<div class="file-info">
<div class="vertical-line"></div>
<p class="file-title">{{ item.title }}</p>
</div>
<p class="file-description">{{ item.description }}</p>
</div>
<div class="download-section">
<p class="download-text" @click="downloadPdf(item.url)">
PDF Download
</p>
</div> </div>
<p class="file-description">{{ item.description }}</p>
</div>
<div class="download-section">
<p class="download-text" @click="downloadPdf(item.url)">
PDF Download
</p>
</div> </div>
<div class="separator-line"></div>
</div> </div>
<div class="separator-line"></div>
</div> </div>
</div> </div>
</div>
<!-- 分页器 --> <!-- 分页器 -->
<div class="pagination-container"> <div class="pagination-container">
<div class="pagination-info"> <div class="pagination-info">
Displaying {{ displayRange.start }} - {{ displayRange.end }} of Displaying {{ displayRange.start }} - {{ displayRange.end }} of
{{ state.total }} results {{ state.total }} results
</div> </div>
<div class="pagination-controls"> <div class="pagination-controls">
<div class="pagination-buttons"> <div class="pagination-buttons">
<button <button
class="page-btn prev-btn" class="page-btn prev-btn"
:disabled="state.currentPage === 1" :disabled="state.currentPage === 1"
@click="goToPrevPage" @click="goToPrevPage"
> >
<svg width="5" height="9" viewBox="0 0 5 9" fill="none"> <svg width="5" height="9" viewBox="0 0 5 9" fill="none">
<path
d="M4 1L1 4.5L4 8"
stroke="#455363"
stroke-width="1.5"
stroke-linecap="round"
stroke-linejoin="round"
/>
</svg>
</button>
<!-- 动态生成页码按钮 -->
<template v-for="page in getVisiblePages()" :key="page">
<button
v-if="page !== '...'"
class="page-btn"
:class="{ active: page === state.currentPage }"
@click="goToPage(page)"
>
{{ page }}
</button>
<button v-else class="page-btn disabled" disabled>...</button>
</template>
<button
class="page-btn next-btn"
:disabled="state.currentPage === totalPages"
@click="goToNextPage"
>
<svg width="5" height="9" viewBox="0 0 5 9" fill="none">
<path
d="M1 1L4 4.5L1 8"
stroke="#455363"
stroke-width="1.5"
stroke-linecap="round"
stroke-linejoin="round"
/>
</svg>
</button>
</div>
<div class="page-size-selector" @click="togglePageSizeMenu">
<span>{{ state.pageSize }}/page</span>
<svg width="10" height="5" viewBox="0 0 10 5" fill="none">
<path <path
d="M1 1L5 4L9 1" d="M4 1L1 4.5L4 8"
stroke="#455363" stroke="#455363"
stroke-width="1.5" stroke-width="1.5"
stroke-linecap="round" stroke-linecap="round"
stroke-linejoin="round" stroke-linejoin="round"
/> />
</svg> </svg>
<!-- 页面大小选择菜单 --> </button>
<div v-if="showPageSizeMenu" class="page-size-menu">
<div <!-- 动态生成页码按钮 -->
v-for="size in [10, 20, 50]" <template v-for="page in getVisiblePages()" :key="page">
:key="size" <button
class="page-size-option" v-if="page !== '...'"
:class="{ active: state.pageSize === size }" class="page-btn"
@click="changePageSize(size)" :class="{ active: page === state.currentPage }"
> @click="goToPage(page)"
{{ size }}/page >
</div> {{ page }}
</button>
<button v-else class="page-btn disabled" disabled>...</button>
</template>
<button
class="page-btn next-btn"
:disabled="state.currentPage === totalPages"
@click="goToNextPage"
>
<svg width="5" height="9" viewBox="0 0 5 9" fill="none">
<path
d="M1 1L4 4.5L1 8"
stroke="#455363"
stroke-width="1.5"
stroke-linecap="round"
stroke-linejoin="round"
/>
</svg>
</button>
</div>
<div class="page-size-selector" @click="togglePageSizeMenu">
<span>{{ state.pageSize }}/page</span>
<svg width="10" height="5" viewBox="0 0 10 5" fill="none">
<path
d="M1 1L5 4L9 1"
stroke="#455363"
stroke-width="1.5"
stroke-linecap="round"
stroke-linejoin="round"
/>
</svg>
<!-- 页面大小选择菜单 -->
<div v-if="showPageSizeMenu" class="page-size-menu">
<div
v-for="size in [10, 20, 50]"
:key="size"
class="page-size-option"
:class="{ active: state.pageSize === size }"
@click="changePageSize(size)"
>
{{ size }}/page
</div> </div>
</div> </div>
<div class="goto-section"> </div>
<span>Goto</span> <div class="goto-section">
<input <span>Goto</span>
type="number" <input
v-model="state.gotoPage" type="number"
class="goto-input" v-model="state.gotoPage"
:min="1" class="goto-input"
:max="totalPages" :min="1"
@keyup.enter="handleGoto" :max="totalPages"
/> @keyup.enter="handleGoto"
</div> />
</div> </div>
</div> </div>
</div> </div>
</main> </div>
<footer></footer>
</template> </template>
<script setup> <script setup>
import { ref, watch, onMounted, onUnmounted, computed, reactive } from "vue"; import { ref, watch, onMounted, onUnmounted, computed, reactive } from "vue";
@ -348,12 +340,6 @@ const handleClickOutside = (event) => {
</script> </script>
<style scoped lang="scss"> <style scoped lang="scss">
.page-container { .page-container {
background-size: 100% 100%;
background-position: center;
background-repeat: no-repeat;
}
.financials-container {
max-width: 932px; max-width: 932px;
margin: 0 auto; margin: 0 auto;
} }
@ -553,7 +539,7 @@ const handleClickOutside = (event) => {
.pagination-container { .pagination-container {
display: flex; display: flex;
align-items: center; align-items: center;
justify-content: space-between; justify-content: flex-end;
margin-bottom: 30px; margin-bottom: 30px;
gap: 21px; gap: 21px;
} }
@ -570,7 +556,7 @@ const handleClickOutside = (event) => {
.pagination-controls { .pagination-controls {
display: flex; display: flex;
align-items: center; align-items: center;
gap: 21px; gap: 8px;
} }
.pagination-buttons { .pagination-buttons {
@ -682,6 +668,7 @@ const handleClickOutside = (event) => {
font-size: 14px; font-size: 14px;
line-height: 1.428em; line-height: 1.428em;
color: #455363; color: #455363;
margin-right: 16px;
} }
.goto-input { .goto-input {

View File

@ -1,10 +1,5 @@
<template> <template>
<div class="historic-data-container" style="margin-bottom: 40px"> <div class="historic-data-container" style="margin-bottom: 40px">
<!-- <img
src="@/assets/image/historic-stock.png"
alt="1"
style="max-width: 100%; margin: 0 auto"
/> -->
<div class="echarts-container"> <div class="echarts-container">
<customEcharts></customEcharts> <customEcharts></customEcharts>
</div> </div>
@ -85,202 +80,202 @@
</template> </template>
<script setup> <script setup>
import { NDataTable, NButton, NDropdown, NIcon } from 'naive-ui' import { NDataTable, NButton, NDropdown, NIcon } from "naive-ui";
import { reactive, onMounted, h, computed } from 'vue' import { reactive, onMounted, h, computed } from "vue";
import axios from 'axios' import axios from "axios";
import { import {
ChevronDownOutline, ChevronDownOutline,
ChevronBackOutline, ChevronBackOutline,
ChevronForwardOutline, ChevronForwardOutline,
ArrowUpOutline, ArrowUpOutline,
} from '@vicons/ionicons5' } from "@vicons/ionicons5";
import defaultTableData from '../data' import defaultTableData from "../data";
// console.log('defaultTableData', defaultTableData) // console.log('defaultTableData', defaultTableData)
import customEcharts from '@/components/customEcharts/index.vue' import customEcharts from "@/components/customEcharts/index.vue";
// //
const periodOptions = [ const periodOptions = [
{ label: 'Daily', key: 'Daily' }, { label: "Daily", key: "Daily" },
{ label: 'Weekly', key: 'Weekly' }, { label: "Weekly", key: "Weekly" },
{ label: 'Monthly', key: 'Monthly' }, { label: "Monthly", key: "Monthly" },
{ label: 'Quarterly', key: 'Quarterly' }, { label: "Quarterly", key: "Quarterly" },
{ label: 'Annual', key: 'Annual' }, { label: "Annual", key: "Annual" },
] ];
const durationOptions = [ const durationOptions = [
{ label: '3 Months', key: '3 Months' }, { label: "3 Months", key: "3 Months" },
{ label: '6 Months', key: '6 Months' }, { label: "6 Months", key: "6 Months" },
{ label: 'Year to Date', key: 'Year to Date' }, { label: "Year to Date", key: "Year to Date" },
{ label: '1 Year', key: '1 Year' }, { label: "1 Year", key: "1 Year" },
{ label: '5 Years', key: '5 Years' }, { label: "5 Years", key: "5 Years" },
{ label: '10 Years', key: '10 Years' }, { label: "10 Years", key: "10 Years" },
// { label: 'Full History', key: 'Full History', disabled: true }, // { label: 'Full History', key: 'Full History', disabled: true },
] ];
// //
const pageSizeOptions = [ const pageSizeOptions = [
{ label: '50', key: 50 }, { label: "50", key: 50 },
{ label: '100', key: 100 }, { label: "100", key: 100 },
{ label: '500', key: 500 }, { label: "500", key: 500 },
{ label: '1000', key: 1000 }, { label: "1000", key: 1000 },
] ];
const state = reactive({ const state = reactive({
selectedPeriod: 'Daily', selectedPeriod: "Daily",
selectedDuration: '6 Months', selectedDuration: "6 Months",
tableData: [], tableData: [],
currentPage: 1, currentPage: 1,
pageSize: 50, pageSize: 50,
}) });
// //
const totalPages = computed(() => { const totalPages = computed(() => {
return Math.ceil(state.tableData.length / state.pageSize) return Math.ceil(state.tableData.length / state.pageSize);
}) });
// //
const paginatedData = computed(() => { const paginatedData = computed(() => {
const start = (state.currentPage - 1) * state.pageSize const start = (state.currentPage - 1) * state.pageSize;
const end = start + state.pageSize const end = start + state.pageSize;
return state.tableData.slice(start, end) return state.tableData.slice(start, end);
}) });
// //
const columns = [ const columns = [
{ {
title: 'Date', title: "Date",
key: 'date', key: "date",
align: 'left', align: "left",
fixed: 'left', fixed: "left",
width: 150, width: 150,
}, },
{ {
title: 'Open', title: "Open",
key: 'open', key: "open",
align: 'center', align: "center",
}, },
{ {
title: 'High', title: "High",
key: 'high', key: "high",
align: 'center', align: "center",
}, },
{ {
title: 'Low', title: "Low",
key: 'low', key: "low",
align: 'center', align: "center",
}, },
{ {
title: 'Close', title: "Close",
key: 'close', key: "close",
align: 'center', align: "center",
}, },
{ {
title: 'Adj. Close', title: "Adj. Close",
key: 'adjClose', key: "adjClose",
align: 'center', align: "center",
}, },
{ {
title: 'Change', title: "Change",
key: 'change', key: "change",
align: 'center', align: "center",
render(row) { render(row) {
const value = parseFloat(row.change) const value = parseFloat(row.change);
const color = value < 0 ? '#ff4d4f' : value > 0 ? '#52c41a' : '' const color = value < 0 ? "#ff4d4f" : value > 0 ? "#52c41a" : "";
return h('span', { style: { color } }, row.change) return h("span", { style: { color } }, row.change);
}, },
}, },
{ {
title: 'Volume', title: "Volume",
key: 'volume', key: "volume",
align: 'center', align: "center",
}, },
] ];
// //
const handlePeriodChange = (key) => { const handlePeriodChange = (key) => {
state.selectedPeriod = key state.selectedPeriod = key;
if (key === 'Annual') { if (key === "Annual") {
handleDurationChange('Full History') handleDurationChange("Full History");
return return;
} }
if (key === 'Monthly') { if (key === "Monthly") {
handleDurationChange('10 Years') handleDurationChange("10 Years");
return return;
} }
if (key === 'Quarterly') { if (key === "Quarterly") {
handleDurationChange('10 Years') handleDurationChange("10 Years");
return return;
} }
getPageData() getPageData();
} };
const handleDurationChange = (key) => { const handleDurationChange = (key) => {
state.selectedDuration = key state.selectedDuration = key;
state.currentPage = 1 state.currentPage = 1;
getPageData() getPageData();
} };
// //
const handlePrevPage = () => { const handlePrevPage = () => {
if (state.currentPage === 1) { if (state.currentPage === 1) {
return return;
} }
state.currentPage-- state.currentPage--;
} };
const handleNextPage = () => { const handleNextPage = () => {
if (state.currentPage >= totalPages.value) { if (state.currentPage >= totalPages.value) {
return return;
} }
state.currentPage++ state.currentPage++;
} };
const handlePageSizeChange = (size) => { const handlePageSizeChange = (size) => {
state.pageSize = size state.pageSize = size;
state.currentPage = 1 // state.currentPage = 1; //
} };
// //
const scrollToTop = () => { const scrollToTop = () => {
// //
// 1. 使document.body // 1. 使document.body
document.body.scrollTop = 0 document.body.scrollTop = 0;
// 2. 使document.documentElement (HTML) // 2. 使document.documentElement (HTML)
document.documentElement.scrollTop = 0 document.documentElement.scrollTop = 0;
// 3. 使scrollIntoView // 3. 使scrollIntoView
document.querySelector('.historic-data-container').scrollIntoView({ document.querySelector(".historic-data-container").scrollIntoView({
behavior: 'smooth', behavior: "smooth",
block: 'start', block: "start",
}) });
} };
onMounted(() => { onMounted(() => {
getPageData() getPageData();
}) });
const getPageDefaultData = async () => { const getPageDefaultData = async () => {
try { try {
let url = let url =
'https://stockanalysis.com/api/symbol/a/OTC-MINM/history?period=Daily&range=3M' "https://stockanalysis.com/api/symbol/a/OTC-MINM/history?period=Daily&range=3M";
const res = await axios.get(url) const res = await axios.get(url);
let originalData = res.data.data let originalData = res.data.data;
// "Nov 26, 2024" // "Nov 26, 2024"
let calcApiData = originalData.map((item) => [ let calcApiData = originalData.map((item) => [
new Date(item[0]).toLocaleDateString('en-US', { new Date(item[0]).toLocaleDateString("en-US", {
month: 'short', month: "short",
day: 'numeric', day: "numeric",
year: 'numeric', year: "numeric",
}), }),
item[1], item[1],
]) ]);
// console.log('', calcApiData) // console.log('', calcApiData)
// 使APIdefaultTableDatacloseadjClose // 使APIdefaultTableDatacloseadjClose
const updatedTableData = defaultTableData.map((tableItem) => { const updatedTableData = defaultTableData.map((tableItem) => {
// API // API
const matchedApiData = calcApiData.find( const matchedApiData = calcApiData.find(
(apiItem) => apiItem[0] === tableItem.date, (apiItem) => apiItem[0] === tableItem.date
) );
if (matchedApiData) { if (matchedApiData) {
// closeadjClose // closeadjClose
@ -288,100 +283,100 @@ const getPageDefaultData = async () => {
...tableItem, ...tableItem,
close: matchedApiData[1].toFixed(2), close: matchedApiData[1].toFixed(2),
adjClose: matchedApiData[1].toFixed(2), adjClose: matchedApiData[1].toFixed(2),
} };
} }
return tableItem return tableItem;
}) });
state.tableData = updatedTableData state.tableData = updatedTableData;
} catch (error) { } catch (error) {
// console.error('', error) // console.error('', error)
} }
} };
const getPageData = async () => { const getPageData = async () => {
let range = '' let range = "";
let now = new Date() let now = new Date();
const last = new Date(now) const last = new Date(now);
last.setMonth(now.getMonth() - 6) last.setMonth(now.getMonth() - 6);
let fromDate = last let fromDate = last;
let toDate = let toDate =
now.getFullYear() + now.getFullYear() +
'-' + "-" +
String(now.getMonth() + 1).padStart(2, '0') + String(now.getMonth() + 1).padStart(2, "0") +
'-' + "-" +
String(now.getDate()).padStart(2, '0') String(now.getDate()).padStart(2, "0");
if (state.selectedDuration === '3 Months') { if (state.selectedDuration === "3 Months") {
range = '3M' range = "3M";
const last = new Date(now) const last = new Date(now);
last.setMonth(now.getMonth() - 3) last.setMonth(now.getMonth() - 3);
fromDate = last fromDate = last;
} else if (state.selectedDuration === '6 Months') { } else if (state.selectedDuration === "6 Months") {
range = '6M' range = "6M";
const last = new Date(now) const last = new Date(now);
last.setMonth(now.getMonth() - 6) last.setMonth(now.getMonth() - 6);
fromDate = last fromDate = last;
} else if (state.selectedDuration === 'Year to Date') { } else if (state.selectedDuration === "Year to Date") {
range = 'YTD' range = "YTD";
fromDate = new Date(now.getFullYear(), 0, 1) fromDate = new Date(now.getFullYear(), 0, 1);
} else if (state.selectedDuration === '1 Year') { } else if (state.selectedDuration === "1 Year") {
range = '1Y' range = "1Y";
const last = new Date(now) const last = new Date(now);
last.setFullYear(now.getFullYear() - 1) last.setFullYear(now.getFullYear() - 1);
fromDate = last fromDate = last;
} else if (state.selectedDuration === '5 Years') { } else if (state.selectedDuration === "5 Years") {
range = '5Y' range = "5Y";
const last = new Date(now) const last = new Date(now);
last.setFullYear(now.getFullYear() - 5) last.setFullYear(now.getFullYear() - 5);
fromDate = last fromDate = last;
} else if (state.selectedDuration === '10 Years') { } else if (state.selectedDuration === "10 Years") {
range = '10Y' range = "10Y";
const last = new Date(now) const last = new Date(now);
last.setFullYear(now.getFullYear() - 10) last.setFullYear(now.getFullYear() - 10);
fromDate = last fromDate = last;
} else if (state.selectedDuration === 'Full History') { } else if (state.selectedDuration === "Full History") {
range = 'Max' range = "Max";
fromDate = new Date('2009-10-07') fromDate = new Date("2009-10-07");
} }
let finalFromDate = let finalFromDate =
fromDate.getFullYear() + fromDate.getFullYear() +
'-' + "-" +
String(fromDate.getMonth() + 1).padStart(2, '0') + String(fromDate.getMonth() + 1).padStart(2, "0") +
'-' + "-" +
String(fromDate.getDate()).padStart(2, '0') String(fromDate.getDate()).padStart(2, "0");
// let url = `https://stockanalysis.com/api/symbol/a/OTC-MINM/history?period=${state.selectedPeriod}&range=${range}` // let url = `https://stockanalysis.com/api/symbol/a/OTC-MINM/history?period=${state.selectedPeriod}&range=${range}`
let url = let url =
'https://common.szjixun.cn/api/stock/history/list?from=' + "https://common.szjixun.cn/api/stock/history/list?from=" +
finalFromDate + finalFromDate +
'&to=' + "&to=" +
toDate toDate;
const res = await axios.get(url) const res = await axios.get(url);
// console.error(res) // console.error(res)
if (res.status === 200) { if (res.status === 200) {
if (res.data.status === 0) { if (res.data.status === 0) {
// "Nov 26, 2024" // "Nov 26, 2024"
let resultData = res.data.data.map((item) => { let resultData = res.data.data.map((item) => {
return { return {
date: new Date(item.date).toLocaleDateString('en-US', { date: new Date(item.date).toLocaleDateString("en-US", {
month: 'short', month: "short",
day: 'numeric', day: "numeric",
year: 'numeric', year: "numeric",
}), }),
open: item.open != null ? Number(item.open).toFixed(2) : '', open: item.open != null ? Number(item.open).toFixed(2) : "",
high: item.high != null ? Number(item.high).toFixed(2) : '', high: item.high != null ? Number(item.high).toFixed(2) : "",
low: item.low != null ? Number(item.low).toFixed(2) : '', low: item.low != null ? Number(item.low).toFixed(2) : "",
close: item.close != null ? Number(item.close).toFixed(2) : '', close: item.close != null ? Number(item.close).toFixed(2) : "",
adjClose: item.close != null ? Number(item.close).toFixed(2) : '', adjClose: item.close != null ? Number(item.close).toFixed(2) : "",
change: change:
item.changePercent != null item.changePercent != null
? Number(item.changePercent).toFixed(2) + '%' ? Number(item.changePercent).toFixed(2) + "%"
: '', : "",
volume: item.volume, volume: item.volume,
} };
}) });
state.tableData = resultData state.tableData = resultData;
} }
} }
} };
</script> </script>
<style scoped lang="scss"> <style scoped lang="scss">

View File

@ -1,5 +1,5 @@
<template> <template>
<div class="historic-data-container" style="margin-bottom: 40px"> <div class="historic-data-container">
<div class="echarts-container"> <div class="echarts-container">
<customEcharts></customEcharts> <customEcharts></customEcharts>
</div> </div>
@ -715,8 +715,9 @@ const getPageData = async () => {
.pagination-container { .pagination-container {
display: flex; display: flex;
align-items: center; align-items: center;
justify-content: space-between;
margin-top: 20px; margin-top: 20px;
justify-content: flex-end;
margin-bottom: 30px;
gap: 21px; gap: 21px;
} }
@ -732,7 +733,7 @@ const getPageData = async () => {
.pagination-controls { .pagination-controls {
display: flex; display: flex;
align-items: center; align-items: center;
gap: 21px; gap: 8px;
} }
.pagination-buttons { .pagination-buttons {
@ -740,7 +741,6 @@ const getPageData = async () => {
align-items: center; align-items: center;
gap: 8px; gap: 8px;
} }
.page-btn { .page-btn {
display: flex; display: flex;
align-items: center; align-items: center;
@ -844,6 +844,7 @@ const getPageData = async () => {
font-size: 14px; font-size: 14px;
line-height: 1.428em; line-height: 1.428em;
color: #455363; color: #455363;
margin-right: 16px;
} }
.goto-input { .goto-input {

View File

@ -1,10 +1,5 @@
<template> <template>
<div class="historic-data-container" style="margin-bottom: 40px"> <div class="historic-data-container" style="margin-bottom: 40px">
<!-- <img
src="@/assets/image/historic-stock-375.png"
alt="1"
style="max-width: 100%; margin: 0 auto"
/> -->
<div class="echarts-container"> <div class="echarts-container">
<customEcharts></customEcharts> <customEcharts></customEcharts>
</div> </div>
@ -83,202 +78,202 @@
</template> </template>
<script setup> <script setup>
import { NDataTable, NButton, NDropdown, NIcon } from 'naive-ui' import { NDataTable, NButton, NDropdown, NIcon } from "naive-ui";
import { reactive, onMounted, h, computed } from 'vue' import { reactive, onMounted, h, computed } from "vue";
import axios from 'axios' import axios from "axios";
import { import {
ChevronDownOutline, ChevronDownOutline,
ChevronBackOutline, ChevronBackOutline,
ChevronForwardOutline, ChevronForwardOutline,
ArrowUpOutline, ArrowUpOutline,
} from '@vicons/ionicons5' } from "@vicons/ionicons5";
import defaultTableData from '../data' import defaultTableData from "../data";
// console.log('defaultTableData', defaultTableData) // console.log('defaultTableData', defaultTableData)
import customEcharts from '@/components/customEcharts/index.vue' import customEcharts from "@/components/customEcharts/index.vue";
// //
const periodOptions = [ const periodOptions = [
{ label: 'Daily', key: 'Daily' }, { label: "Daily", key: "Daily" },
{ label: 'Weekly', key: 'Weekly' }, { label: "Weekly", key: "Weekly" },
{ label: 'Monthly', key: 'Monthly' }, { label: "Monthly", key: "Monthly" },
{ label: 'Quarterly', key: 'Quarterly' }, { label: "Quarterly", key: "Quarterly" },
{ label: 'Annual', key: 'Annual' }, { label: "Annual", key: "Annual" },
] ];
const durationOptions = [ const durationOptions = [
{ label: '3 Months', key: '3 Months' }, { label: "3 Months", key: "3 Months" },
{ label: '6 Months', key: '6 Months' }, { label: "6 Months", key: "6 Months" },
{ label: 'Year to Date', key: 'Year to Date' }, { label: "Year to Date", key: "Year to Date" },
{ label: '1 Year', key: '1 Year' }, { label: "1 Year", key: "1 Year" },
{ label: '5 Years', key: '5 Years' }, { label: "5 Years", key: "5 Years" },
{ label: '10 Years', key: '10 Years' }, { label: "10 Years", key: "10 Years" },
// { label: 'Full History', key: 'Full History', disabled: true }, // { label: 'Full History', key: 'Full History', disabled: true },
] ];
// //
const pageSizeOptions = [ const pageSizeOptions = [
{ label: '50', key: 50 }, { label: "50", key: 50 },
{ label: '100', key: 100 }, { label: "100", key: 100 },
{ label: '500', key: 500 }, { label: "500", key: 500 },
{ label: '1000', key: 1000 }, { label: "1000", key: 1000 },
] ];
const state = reactive({ const state = reactive({
selectedPeriod: 'Daily', selectedPeriod: "Daily",
selectedDuration: '6 Months', selectedDuration: "6 Months",
tableData: [], tableData: [],
currentPage: 1, currentPage: 1,
pageSize: 50, pageSize: 50,
}) });
// //
const totalPages = computed(() => { const totalPages = computed(() => {
return Math.ceil(state.tableData.length / state.pageSize) return Math.ceil(state.tableData.length / state.pageSize);
}) });
// //
const paginatedData = computed(() => { const paginatedData = computed(() => {
const start = (state.currentPage - 1) * state.pageSize const start = (state.currentPage - 1) * state.pageSize;
const end = start + state.pageSize const end = start + state.pageSize;
return state.tableData.slice(start, end) return state.tableData.slice(start, end);
}) });
// //
const columns = [ const columns = [
{ {
title: 'Date', title: "Date",
key: 'date', key: "date",
align: 'left', align: "left",
fixed: 'left', fixed: "left",
width: 150, width: 150,
}, },
{ {
title: 'Open', title: "Open",
key: 'open', key: "open",
align: 'center', align: "center",
}, },
{ {
title: 'High', title: "High",
key: 'high', key: "high",
align: 'center', align: "center",
}, },
{ {
title: 'Low', title: "Low",
key: 'low', key: "low",
align: 'center', align: "center",
}, },
{ {
title: 'Close', title: "Close",
key: 'close', key: "close",
align: 'center', align: "center",
}, },
{ {
title: 'Adj. Close', title: "Adj. Close",
key: 'adjClose', key: "adjClose",
align: 'center', align: "center",
}, },
{ {
title: 'Change', title: "Change",
key: 'change', key: "change",
align: 'center', align: "center",
render(row) { render(row) {
const value = parseFloat(row.change) const value = parseFloat(row.change);
const color = value < 0 ? '#ff4d4f' : value > 0 ? '#52c41a' : '' const color = value < 0 ? "#ff4d4f" : value > 0 ? "#52c41a" : "";
return h('span', { style: { color } }, row.change) return h("span", { style: { color } }, row.change);
}, },
}, },
{ {
title: 'Volume', title: "Volume",
key: 'volume', key: "volume",
align: 'center', align: "center",
}, },
] ];
// //
const handlePeriodChange = (key) => { const handlePeriodChange = (key) => {
state.selectedPeriod = key state.selectedPeriod = key;
if (key === 'Annual') { if (key === "Annual") {
handleDurationChange('Full History') handleDurationChange("Full History");
return return;
} }
if (key === 'Monthly') { if (key === "Monthly") {
handleDurationChange('10 Years') handleDurationChange("10 Years");
return return;
} }
if (key === 'Quarterly') { if (key === "Quarterly") {
handleDurationChange('10 Years') handleDurationChange("10 Years");
return return;
} }
getPageData() getPageData();
} };
const handleDurationChange = (key) => { const handleDurationChange = (key) => {
state.selectedDuration = key state.selectedDuration = key;
state.currentPage = 1 state.currentPage = 1;
getPageData() getPageData();
} };
// //
const handlePrevPage = () => { const handlePrevPage = () => {
if (state.currentPage === 1) { if (state.currentPage === 1) {
return return;
} }
state.currentPage-- state.currentPage--;
} };
const handleNextPage = () => { const handleNextPage = () => {
if (state.currentPage >= totalPages.value) { if (state.currentPage >= totalPages.value) {
return return;
} }
state.currentPage++ state.currentPage++;
} };
const handlePageSizeChange = (size) => { const handlePageSizeChange = (size) => {
state.pageSize = size state.pageSize = size;
state.currentPage = 1 // state.currentPage = 1; //
} };
// //
const scrollToTop = () => { const scrollToTop = () => {
// //
// 1. 使document.body // 1. 使document.body
document.body.scrollTop = 0 document.body.scrollTop = 0;
// 2. 使document.documentElement (HTML) // 2. 使document.documentElement (HTML)
document.documentElement.scrollTop = 0 document.documentElement.scrollTop = 0;
// 3. 使scrollIntoView // 3. 使scrollIntoView
document.querySelector('.historic-data-container').scrollIntoView({ document.querySelector(".historic-data-container").scrollIntoView({
behavior: 'smooth', behavior: "smooth",
block: 'start', block: "start",
}) });
} };
onMounted(() => { onMounted(() => {
getPageData() getPageData();
}) });
const getPageDefaultData = async () => { const getPageDefaultData = async () => {
try { try {
let url = let url =
'https://stockanalysis.com/api/symbol/a/OTC-MINM/history?period=Daily&range=3M' "https://stockanalysis.com/api/symbol/a/OTC-MINM/history?period=Daily&range=3M";
const res = await axios.get(url) const res = await axios.get(url);
let originalData = res.data.data let originalData = res.data.data;
// "Nov 26, 2024" // "Nov 26, 2024"
let calcApiData = originalData.map((item) => [ let calcApiData = originalData.map((item) => [
new Date(item[0]).toLocaleDateString('en-US', { new Date(item[0]).toLocaleDateString("en-US", {
month: 'short', month: "short",
day: 'numeric', day: "numeric",
year: 'numeric', year: "numeric",
}), }),
item[1], item[1],
]) ]);
// console.log('', calcApiData) // console.log('', calcApiData)
// 使APIdefaultTableDatacloseadjClose // 使APIdefaultTableDatacloseadjClose
const updatedTableData = defaultTableData.map((tableItem) => { const updatedTableData = defaultTableData.map((tableItem) => {
// API // API
const matchedApiData = calcApiData.find( const matchedApiData = calcApiData.find(
(apiItem) => apiItem[0] === tableItem.date, (apiItem) => apiItem[0] === tableItem.date
) );
if (matchedApiData) { if (matchedApiData) {
// closeadjClose // closeadjClose
@ -286,100 +281,100 @@ const getPageDefaultData = async () => {
...tableItem, ...tableItem,
close: matchedApiData[1].toFixed(2), close: matchedApiData[1].toFixed(2),
adjClose: matchedApiData[1].toFixed(2), adjClose: matchedApiData[1].toFixed(2),
} };
} }
return tableItem return tableItem;
}) });
state.tableData = updatedTableData state.tableData = updatedTableData;
} catch (error) { } catch (error) {
// console.error('', error) // console.error('', error)
} }
} };
const getPageData = async () => { const getPageData = async () => {
let range = '' let range = "";
let now = new Date() let now = new Date();
const last = new Date(now) const last = new Date(now);
last.setMonth(now.getMonth() - 6) last.setMonth(now.getMonth() - 6);
let fromDate = last let fromDate = last;
let toDate = let toDate =
now.getFullYear() + now.getFullYear() +
'-' + "-" +
String(now.getMonth() + 1).padStart(2, '0') + String(now.getMonth() + 1).padStart(2, "0") +
'-' + "-" +
String(now.getDate()).padStart(2, '0') String(now.getDate()).padStart(2, "0");
if (state.selectedDuration === '3 Months') { if (state.selectedDuration === "3 Months") {
range = '3M' range = "3M";
const last = new Date(now) const last = new Date(now);
last.setMonth(now.getMonth() - 3) last.setMonth(now.getMonth() - 3);
fromDate = last fromDate = last;
} else if (state.selectedDuration === '6 Months') { } else if (state.selectedDuration === "6 Months") {
range = '6M' range = "6M";
const last = new Date(now) const last = new Date(now);
last.setMonth(now.getMonth() - 6) last.setMonth(now.getMonth() - 6);
fromDate = last fromDate = last;
} else if (state.selectedDuration === 'Year to Date') { } else if (state.selectedDuration === "Year to Date") {
range = 'YTD' range = "YTD";
fromDate = new Date(now.getFullYear(), 0, 1) fromDate = new Date(now.getFullYear(), 0, 1);
} else if (state.selectedDuration === '1 Year') { } else if (state.selectedDuration === "1 Year") {
range = '1Y' range = "1Y";
const last = new Date(now) const last = new Date(now);
last.setFullYear(now.getFullYear() - 1) last.setFullYear(now.getFullYear() - 1);
fromDate = last fromDate = last;
} else if (state.selectedDuration === '5 Years') { } else if (state.selectedDuration === "5 Years") {
range = '5Y' range = "5Y";
const last = new Date(now) const last = new Date(now);
last.setFullYear(now.getFullYear() - 5) last.setFullYear(now.getFullYear() - 5);
fromDate = last fromDate = last;
} else if (state.selectedDuration === '10 Years') { } else if (state.selectedDuration === "10 Years") {
range = '10Y' range = "10Y";
const last = new Date(now) const last = new Date(now);
last.setFullYear(now.getFullYear() - 10) last.setFullYear(now.getFullYear() - 10);
fromDate = last fromDate = last;
} else if (state.selectedDuration === 'Full History') { } else if (state.selectedDuration === "Full History") {
range = 'Max' range = "Max";
fromDate = new Date('2009-10-07') fromDate = new Date("2009-10-07");
} }
let finalFromDate = let finalFromDate =
fromDate.getFullYear() + fromDate.getFullYear() +
'-' + "-" +
String(fromDate.getMonth() + 1).padStart(2, '0') + String(fromDate.getMonth() + 1).padStart(2, "0") +
'-' + "-" +
String(fromDate.getDate()).padStart(2, '0') String(fromDate.getDate()).padStart(2, "0");
// let url = `https://stockanalysis.com/api/symbol/a/OTC-MINM/history?period=${state.selectedPeriod}&range=${range}` // let url = `https://stockanalysis.com/api/symbol/a/OTC-MINM/history?period=${state.selectedPeriod}&range=${range}`
let url = let url =
'https://common.szjixun.cn/api/stock/history/list?from=' + "https://common.szjixun.cn/api/stock/history/list?from=" +
finalFromDate + finalFromDate +
'&to=' + "&to=" +
toDate toDate;
const res = await axios.get(url) const res = await axios.get(url);
// console.error(res) // console.error(res)
if (res.status === 200) { if (res.status === 200) {
if (res.data.status === 0) { if (res.data.status === 0) {
// "Nov 26, 2024" // "Nov 26, 2024"
let resultData = res.data.data.map((item) => { let resultData = res.data.data.map((item) => {
return { return {
date: new Date(item.date).toLocaleDateString('en-US', { date: new Date(item.date).toLocaleDateString("en-US", {
month: 'short', month: "short",
day: 'numeric', day: "numeric",
year: 'numeric', year: "numeric",
}), }),
open: item.open != null ? Number(item.open).toFixed(2) : '', open: item.open != null ? Number(item.open).toFixed(2) : "",
high: item.high != null ? Number(item.high).toFixed(2) : '', high: item.high != null ? Number(item.high).toFixed(2) : "",
low: item.low != null ? Number(item.low).toFixed(2) : '', low: item.low != null ? Number(item.low).toFixed(2) : "",
close: item.close != null ? Number(item.close).toFixed(2) : '', close: item.close != null ? Number(item.close).toFixed(2) : "",
adjClose: item.close != null ? Number(item.close).toFixed(2) : '', adjClose: item.close != null ? Number(item.close).toFixed(2) : "",
change: change:
item.changePercent != null item.changePercent != null
? Number(item.changePercent).toFixed(2) + '%' ? Number(item.changePercent).toFixed(2) + "%"
: '', : "",
volume: item.volume, volume: item.volume,
} };
}) });
state.tableData = resultData state.tableData = resultData;
} }
} }
} };
</script> </script>
<style scoped lang="scss"> <style scoped lang="scss">

View File

@ -1,10 +1,5 @@
<template> <template>
<div class="historic-data-container" style="margin-bottom: 40px"> <div class="historic-data-container" style="margin-bottom: 40px">
<!-- <img
src="@/assets/image/historic-stock.png"
alt="1"
style="max-width: 100%; margin: 0 auto"
/> -->
<div class="echarts-container"> <div class="echarts-container">
<customEcharts></customEcharts> <customEcharts></customEcharts>
</div> </div>
@ -85,202 +80,202 @@
</template> </template>
<script setup> <script setup>
import { NDataTable, NButton, NDropdown, NIcon } from 'naive-ui' import { NDataTable, NButton, NDropdown, NIcon } from "naive-ui";
import { reactive, onMounted, h, computed } from 'vue' import { reactive, onMounted, h, computed } from "vue";
import axios from 'axios' import axios from "axios";
import { import {
ChevronDownOutline, ChevronDownOutline,
ChevronBackOutline, ChevronBackOutline,
ChevronForwardOutline, ChevronForwardOutline,
ArrowUpOutline, ArrowUpOutline,
} from '@vicons/ionicons5' } from "@vicons/ionicons5";
import defaultTableData from '../data' import defaultTableData from "../data";
// console.log('defaultTableData', defaultTableData) // console.log('defaultTableData', defaultTableData)
import customEcharts from '@/components/customEcharts/index.vue' import customEcharts from "@/components/customEcharts/index.vue";
// //
const periodOptions = [ const periodOptions = [
{ label: 'Daily', key: 'Daily' }, { label: "Daily", key: "Daily" },
{ label: 'Weekly', key: 'Weekly' }, { label: "Weekly", key: "Weekly" },
{ label: 'Monthly', key: 'Monthly' }, { label: "Monthly", key: "Monthly" },
{ label: 'Quarterly', key: 'Quarterly' }, { label: "Quarterly", key: "Quarterly" },
{ label: 'Annual', key: 'Annual' }, { label: "Annual", key: "Annual" },
] ];
const durationOptions = [ const durationOptions = [
{ label: '3 Months', key: '3 Months' }, { label: "3 Months", key: "3 Months" },
{ label: '6 Months', key: '6 Months' }, { label: "6 Months", key: "6 Months" },
{ label: 'Year to Date', key: 'Year to Date' }, { label: "Year to Date", key: "Year to Date" },
{ label: '1 Year', key: '1 Year' }, { label: "1 Year", key: "1 Year" },
{ label: '5 Years', key: '5 Years' }, { label: "5 Years", key: "5 Years" },
{ label: '10 Years', key: '10 Years' }, { label: "10 Years", key: "10 Years" },
// { label: 'Full History', key: 'Full History', disabled: true }, // { label: 'Full History', key: 'Full History', disabled: true },
] ];
// //
const pageSizeOptions = [ const pageSizeOptions = [
{ label: '50', key: 50 }, { label: "50", key: 50 },
{ label: '100', key: 100 }, { label: "100", key: 100 },
{ label: '500', key: 500 }, { label: "500", key: 500 },
{ label: '1000', key: 1000 }, { label: "1000", key: 1000 },
] ];
const state = reactive({ const state = reactive({
selectedPeriod: 'Daily', selectedPeriod: "Daily",
selectedDuration: '6 Months', selectedDuration: "6 Months",
tableData: [], tableData: [],
currentPage: 1, currentPage: 1,
pageSize: 50, pageSize: 50,
}) });
// //
const totalPages = computed(() => { const totalPages = computed(() => {
return Math.ceil(state.tableData.length / state.pageSize) return Math.ceil(state.tableData.length / state.pageSize);
}) });
// //
const paginatedData = computed(() => { const paginatedData = computed(() => {
const start = (state.currentPage - 1) * state.pageSize const start = (state.currentPage - 1) * state.pageSize;
const end = start + state.pageSize const end = start + state.pageSize;
return state.tableData.slice(start, end) return state.tableData.slice(start, end);
}) });
// //
const columns = [ const columns = [
{ {
title: 'Date', title: "Date",
key: 'date', key: "date",
align: 'left', align: "left",
fixed: 'left', fixed: "left",
width: 150, width: 150,
}, },
{ {
title: 'Open', title: "Open",
key: 'open', key: "open",
align: 'center', align: "center",
}, },
{ {
title: 'High', title: "High",
key: 'high', key: "high",
align: 'center', align: "center",
}, },
{ {
title: 'Low', title: "Low",
key: 'low', key: "low",
align: 'center', align: "center",
}, },
{ {
title: 'Close', title: "Close",
key: 'close', key: "close",
align: 'center', align: "center",
}, },
{ {
title: 'Adj. Close', title: "Adj. Close",
key: 'adjClose', key: "adjClose",
align: 'center', align: "center",
}, },
{ {
title: 'Change', title: "Change",
key: 'change', key: "change",
align: 'center', align: "center",
render(row) { render(row) {
const value = parseFloat(row.change) const value = parseFloat(row.change);
const color = value < 0 ? '#ff4d4f' : value > 0 ? '#52c41a' : '' const color = value < 0 ? "#ff4d4f" : value > 0 ? "#52c41a" : "";
return h('span', { style: { color } }, row.change) return h("span", { style: { color } }, row.change);
}, },
}, },
{ {
title: 'Volume', title: "Volume",
key: 'volume', key: "volume",
align: 'center', align: "center",
}, },
] ];
// //
const handlePeriodChange = (key) => { const handlePeriodChange = (key) => {
state.selectedPeriod = key state.selectedPeriod = key;
if (key === 'Annual') { if (key === "Annual") {
handleDurationChange('Full History') handleDurationChange("Full History");
return return;
} }
if (key === 'Monthly') { if (key === "Monthly") {
handleDurationChange('10 Years') handleDurationChange("10 Years");
return return;
} }
if (key === 'Quarterly') { if (key === "Quarterly") {
handleDurationChange('10 Years') handleDurationChange("10 Years");
return return;
} }
getPageData() getPageData();
} };
const handleDurationChange = (key) => { const handleDurationChange = (key) => {
state.selectedDuration = key state.selectedDuration = key;
state.currentPage = 1 state.currentPage = 1;
getPageData() getPageData();
} };
// //
const handlePrevPage = () => { const handlePrevPage = () => {
if (state.currentPage === 1) { if (state.currentPage === 1) {
return return;
} }
state.currentPage-- state.currentPage--;
} };
const handleNextPage = () => { const handleNextPage = () => {
if (state.currentPage >= totalPages.value) { if (state.currentPage >= totalPages.value) {
return return;
} }
state.currentPage++ state.currentPage++;
} };
const handlePageSizeChange = (size) => { const handlePageSizeChange = (size) => {
state.pageSize = size state.pageSize = size;
state.currentPage = 1 // state.currentPage = 1; //
} };
// //
const scrollToTop = () => { const scrollToTop = () => {
// //
// 1. 使document.body // 1. 使document.body
document.body.scrollTop = 0 document.body.scrollTop = 0;
// 2. 使document.documentElement (HTML) // 2. 使document.documentElement (HTML)
document.documentElement.scrollTop = 0 document.documentElement.scrollTop = 0;
// 3. 使scrollIntoView // 3. 使scrollIntoView
document.querySelector('.historic-data-container').scrollIntoView({ document.querySelector(".historic-data-container").scrollIntoView({
behavior: 'smooth', behavior: "smooth",
block: 'start', block: "start",
}) });
} };
onMounted(() => { onMounted(() => {
getPageData() getPageData();
}) });
const getPageDefaultData = async () => { const getPageDefaultData = async () => {
try { try {
let url = let url =
'https://stockanalysis.com/api/symbol/a/OTC-MINM/history?period=Daily&range=3M' "https://stockanalysis.com/api/symbol/a/OTC-MINM/history?period=Daily&range=3M";
const res = await axios.get(url) const res = await axios.get(url);
let originalData = res.data.data let originalData = res.data.data;
// "Nov 26, 2024" // "Nov 26, 2024"
let calcApiData = originalData.map((item) => [ let calcApiData = originalData.map((item) => [
new Date(item[0]).toLocaleDateString('en-US', { new Date(item[0]).toLocaleDateString("en-US", {
month: 'short', month: "short",
day: 'numeric', day: "numeric",
year: 'numeric', year: "numeric",
}), }),
item[1], item[1],
]) ]);
// console.log('', calcApiData) // console.log('', calcApiData)
// 使APIdefaultTableDatacloseadjClose // 使APIdefaultTableDatacloseadjClose
const updatedTableData = defaultTableData.map((tableItem) => { const updatedTableData = defaultTableData.map((tableItem) => {
// API // API
const matchedApiData = calcApiData.find( const matchedApiData = calcApiData.find(
(apiItem) => apiItem[0] === tableItem.date, (apiItem) => apiItem[0] === tableItem.date
) );
if (matchedApiData) { if (matchedApiData) {
// closeadjClose // closeadjClose
@ -288,100 +283,100 @@ const getPageDefaultData = async () => {
...tableItem, ...tableItem,
close: matchedApiData[1].toFixed(2), close: matchedApiData[1].toFixed(2),
adjClose: matchedApiData[1].toFixed(2), adjClose: matchedApiData[1].toFixed(2),
} };
} }
return tableItem return tableItem;
}) });
state.tableData = updatedTableData state.tableData = updatedTableData;
} catch (error) { } catch (error) {
// console.error('', error) // console.error('', error)
} }
} };
const getPageData = async () => { const getPageData = async () => {
let range = '' let range = "";
let now = new Date() let now = new Date();
const last = new Date(now) const last = new Date(now);
last.setMonth(now.getMonth() - 6) last.setMonth(now.getMonth() - 6);
let fromDate = last let fromDate = last;
let toDate = let toDate =
now.getFullYear() + now.getFullYear() +
'-' + "-" +
String(now.getMonth() + 1).padStart(2, '0') + String(now.getMonth() + 1).padStart(2, "0") +
'-' + "-" +
String(now.getDate()).padStart(2, '0') String(now.getDate()).padStart(2, "0");
if (state.selectedDuration === '3 Months') { if (state.selectedDuration === "3 Months") {
range = '3M' range = "3M";
const last = new Date(now) const last = new Date(now);
last.setMonth(now.getMonth() - 3) last.setMonth(now.getMonth() - 3);
fromDate = last fromDate = last;
} else if (state.selectedDuration === '6 Months') { } else if (state.selectedDuration === "6 Months") {
range = '6M' range = "6M";
const last = new Date(now) const last = new Date(now);
last.setMonth(now.getMonth() - 6) last.setMonth(now.getMonth() - 6);
fromDate = last fromDate = last;
} else if (state.selectedDuration === 'Year to Date') { } else if (state.selectedDuration === "Year to Date") {
range = 'YTD' range = "YTD";
fromDate = new Date(now.getFullYear(), 0, 1) fromDate = new Date(now.getFullYear(), 0, 1);
} else if (state.selectedDuration === '1 Year') { } else if (state.selectedDuration === "1 Year") {
range = '1Y' range = "1Y";
const last = new Date(now) const last = new Date(now);
last.setFullYear(now.getFullYear() - 1) last.setFullYear(now.getFullYear() - 1);
fromDate = last fromDate = last;
} else if (state.selectedDuration === '5 Years') { } else if (state.selectedDuration === "5 Years") {
range = '5Y' range = "5Y";
const last = new Date(now) const last = new Date(now);
last.setFullYear(now.getFullYear() - 5) last.setFullYear(now.getFullYear() - 5);
fromDate = last fromDate = last;
} else if (state.selectedDuration === '10 Years') { } else if (state.selectedDuration === "10 Years") {
range = '10Y' range = "10Y";
const last = new Date(now) const last = new Date(now);
last.setFullYear(now.getFullYear() - 10) last.setFullYear(now.getFullYear() - 10);
fromDate = last fromDate = last;
} else if (state.selectedDuration === 'Full History') { } else if (state.selectedDuration === "Full History") {
range = 'Max' range = "Max";
fromDate = new Date('2009-10-07') fromDate = new Date("2009-10-07");
} }
let finalFromDate = let finalFromDate =
fromDate.getFullYear() + fromDate.getFullYear() +
'-' + "-" +
String(fromDate.getMonth() + 1).padStart(2, '0') + String(fromDate.getMonth() + 1).padStart(2, "0") +
'-' + "-" +
String(fromDate.getDate()).padStart(2, '0') String(fromDate.getDate()).padStart(2, "0");
// let url = `https://stockanalysis.com/api/symbol/a/OTC-MINM/history?period=${state.selectedPeriod}&range=${range}` // let url = `https://stockanalysis.com/api/symbol/a/OTC-MINM/history?period=${state.selectedPeriod}&range=${range}`
let url = let url =
'https://common.szjixun.cn/api/stock/history/list?from=' + "https://common.szjixun.cn/api/stock/history/list?from=" +
finalFromDate + finalFromDate +
'&to=' + "&to=" +
toDate toDate;
const res = await axios.get(url) const res = await axios.get(url);
// console.error(res) // console.error(res)
if (res.status === 200) { if (res.status === 200) {
if (res.data.status === 0) { if (res.data.status === 0) {
// "Nov 26, 2024" // "Nov 26, 2024"
let resultData = res.data.data.map((item) => { let resultData = res.data.data.map((item) => {
return { return {
date: new Date(item.date).toLocaleDateString('en-US', { date: new Date(item.date).toLocaleDateString("en-US", {
month: 'short', month: "short",
day: 'numeric', day: "numeric",
year: 'numeric', year: "numeric",
}), }),
open: item.open != null ? Number(item.open).toFixed(2) : '', open: item.open != null ? Number(item.open).toFixed(2) : "",
high: item.high != null ? Number(item.high).toFixed(2) : '', high: item.high != null ? Number(item.high).toFixed(2) : "",
low: item.low != null ? Number(item.low).toFixed(2) : '', low: item.low != null ? Number(item.low).toFixed(2) : "",
close: item.close != null ? Number(item.close).toFixed(2) : '', close: item.close != null ? Number(item.close).toFixed(2) : "",
adjClose: item.close != null ? Number(item.close).toFixed(2) : '', adjClose: item.close != null ? Number(item.close).toFixed(2) : "",
change: change:
item.changePercent != null item.changePercent != null
? Number(item.changePercent).toFixed(2) + '%' ? Number(item.changePercent).toFixed(2) + "%"
: '', : "",
volume: item.volume, volume: item.volume,
} };
}) });
state.tableData = resultData state.tableData = resultData;
} }
} }
} };
</script> </script>
<style scoped lang="scss"> <style scoped lang="scss">

View File

@ -1,233 +1,546 @@
<script setup> <script setup></script>
import { useStockQuote } from "@/store/stock-quote/index.js";
const { getStockQuate, stockQuote, formatted } = useStockQuote();
console.log(stockQuote);
getStockQuate();
</script>
<template> <template>
<main ref="main" class="stock-quote-hero"> <div class="page-container">
<div class="hero-content"> <section class="hero-section relative">
<!-- 标题区域 --> <div class="hero-content">
<div class="title-section"> <div class="hero-title">
<div class="title-decoration"></div> More than just a tool<br />
<div class="stock-title">Stock Quote</div> Comprehensive growth solutions, <br />
providing a one-stop solution for content creation,<br />
publishing, analysis, and monetization
</div>
</div> </div>
<section class="quote-layout"> <div class="core-value-card">
<article class="price-card"> <div class="card-content">
<div class="price-value">${{ stockQuote.price }}</div> <div class="card-title">Core Value</div>
<div class="price-market">NASDAQ: FIEE</div> <div class="card-text">
<div class="price-time">{{ formatted }}</div> The FIEE-SAAS platform is a one-stop content operation solution
</article> tailored for creators in the digital era. The platform utilizes
<div class="stats-table"> intelligent distribution technology, A1 empowerment tools, and
<div class="stats-cell"> full-chain services,Assist you in efficiently reaching audiences on
<span class="stat-title">Open</span> global mainstream platforms such as TikTok, YouTube, and Instagram,
<span class="stat-value">{{ stockQuote.open }}</span> creating a KOL brand effect, unlocking content value, and achieving
</div> sustainable growth.
<div class="stats-cell">
<span class="stat-title">% Change</span>
<span
class="stat-value"
:class="
stockQuote.change
? String(stockQuote.change).includes('-')
? 'negative-change'
: String(stockQuote.change).includes('+')
? 'positive-change'
: 'neutral-change'
: 'neutral-change'
"
>
{{ stockQuote.change }}
</span>
</div>
<div class="stats-cell">
<span class="stat-title">Day's Range</span>
<span class="stat-value">{{ stockQuote.daysRange }}</span>
</div>
<div class="stats-cell">
<span class="stat-title">52-Week Range</span>
<span class="stat-value">{{ stockQuote.week52Range }}</span>
</div>
<div class="stats-cell">
<span class="stat-title">Volume</span>
<span class="stat-value">{{ stockQuote.volume }}</span>
</div>
<div class="stats-cell">
<span class="stat-title">Market Cap</span>
<span class="stat-value">{{ stockQuote.marketCap }}</span>
</div> </div>
</div> </div>
</section> </div>
</div> <img
</main> src="@/assets/image/product-introduction-img2.png"
alt="background"
class="hero-bg-img"
/>
</section>
<section class="features-section">
<div class="section-header">
<div class="decorator-bar"></div>
<div class="section-title">Product Features</div>
</div>
<div class="features-list">
<div class="feature-item">
<div class="feature-title">
<div class="vertical-line"></div>
One-click Synchronous Publishing
</div>
<div class="feature-description">
Synchronize graphic and video content to TikTok, YouTube, and
Instagram platforms at once, saving time on repetitive operations.
</div>
</div>
<div class="feature-item">
<div class="feature-title">
<div class="vertical-line"></div>
Intelligent Scheduled Publishing
</div>
<div class="feature-description">
Plan the content release time in advance, support batch scheduling,
and accurately grasp the optimal release time of each platform.
</div>
</div>
<div class="feature-item">
<div class="feature-title">
<div class="vertical-line"></div>
Unified Management of Multiple Accounts
</div>
<div class="feature-description">
Easily manage multiple accounts on one platform without the need for
repeated login and switching, improving team collaboration
efficiency.
</div>
</div>
<div class="feature-item">
<div class="feature-title">
<div class="vertical-line"></div>
Cloud Content Library
</div>
<div class="feature-description">
Safely store and manage all creative materials, access and use them
anytime, anywhere, and support quick retrieval and reuse.
</div>
</div>
<div class="feature-item">
<div class="feature-title">
<div class="vertical-line"></div>
Basic Data Tracking
</div>
<div class="feature-description">
Visually view the content performance of various platforms,
understand core data indicators, and provide a basis for optimizing
strategies.
</div>
</div>
</div>
</section>
<section class="solutions-section">
<div class="section-header">
<div class="decorator-bar"></div>
<div class="section-title">Value Added Solutions</div>
</div>
<div class="solutions-content">
<div class="solutions-list">
<div class="solution-item">
<img
src="@/assets/image/product-introduction-icon1.png"
alt="KOL Brand Promotion"
class="solution-icon"
/>
<div class="solution-title">
<div class="vertical-line"></div>
KOL Brand Promotion Services
</div>
<div class="solution-description">
Efficiently connect high-quality business cooperation
opportunities and complete the entire process management from
order acceptance to publication within the platform.
</div>
</div>
<div class="solution-item">
<img
src="@/assets/image/product-introduction-icon2.png"
alt="Content Creation Support"
class="solution-icon"
/>
<div class="solution-title">
<div class="vertical-line"></div>
Professional Content Creation Support
</div>
<div class="solution-description">
Connect professional shooting and post production teams for you,
create high-quality "art+story" content, and strengthen IP
influence.
</div>
</div>
<div class="solution-item">
<img
src="@/assets/image/product-introduction-icon3.png"
alt="Account Operation"
class="solution-icon"
/>
<div class="solution-title">
<div class="vertical-line"></div>
Account Operation and Hosting Services
</div>
<div class="solution-description">
From 0 to 1 account positioning, follower growth strategy to
monetization cycle, operation experts provide full cycle running
and hosting services.
</div>
</div>
</div>
<div class="solution-image-container">
<img
src="@/assets/image/product-introduction-img1.png"
alt="Value Added Solutions"
class="solution-image"
/>
</div>
</div>
</section>
<section class="advantages-section">
<div class="advantages-content">
<div class="advantages-header">
<div class="decorator-bar"></div>
<div class="section-title text-white">Our Advantages</div>
</div>
<div class="advantages-list">
<div class="advantage-item">
<div class="advantage-title">
<div class="vertical-line"></div>
Time Saving
</div>
<div class="advantage-description">
Multi platform publishing efficiency improvement, allowing you to
focus on content creation.
</div>
</div>
<div class="advantage-item">
<div class="advantage-title">
<div class="vertical-line"></div>
Safe and Reliable
</div>
<div class="advantage-description">
Enterprise level data encryption and permission control ensure
account and content security.
</div>
</div>
<div class="advantage-item">
<div class="advantage-title">
<div class="vertical-line"></div>
Maintain Consistency
</div>
<div class="advantage-description">
Ensure that brand information is presented uniformly on all
platforms.
</div>
</div>
<div class="advantage-item">
<div class="advantage-title">
<div class="vertical-line"></div>
Data Driven
</div>
<div class="advantage-description">
Optimizing Content Strategies Based on Actual Performance.
</div>
</div>
<div class="advantage-item">
<div class="advantage-title">
<div class="vertical-line"></div>
Easy to Use
</div>
<div class="advantage-description">
Intuitive interface design, no need for professional technical
background.
</div>
</div>
</div>
</div>
</section>
<section class="cta-section">
<img
src="@/assets/image/product-introduction-img5.png"
alt="background"
class="cta-bg-img"
/>
<div class="cta-content">
<div class="cta-text">
<svg
xmlns="http://www.w3.org/2000/svg"
width="60"
height="32"
viewBox="0 0 60 32"
fill="none"
>
<path
d="M42.4968 0.636391C43.3437 -0.21213 44.7165 -0.21213 45.5635 0.636391L59.3648 14.4638C60.2117 15.3123 60.2117 16.6877 59.3648 17.5362L45.5635 31.3636C44.7165 32.2121 43.3437 32.2121 42.4968 31.3636C41.6499 30.5151 41.6499 29.1397 42.4968 28.2912L52.5962 18.1728H2.16868C0.970951 18.1728 0 17.2 0 16C0 14.8 0.970951 13.8272 2.16868 13.8272H52.5962L42.4968 3.70883C41.6499 2.86031 41.6499 1.48491 42.4968 0.636391Z"
fill="#FF7BAC"
/>
</svg>
<div class="cta-title">
Get customized <br />
solutions for free
</div>
</div>
<div class="cta-qr-code">
<img
src="@/assets/image/product-introduction-img6.png"
alt="QR Code"
/>
</div>
</div>
</section>
</div>
</template> </template>
<style scoped> <style scoped>
.stock-quote-hero { .page-container {
background-color: #fff;
font-family: "PingFang SC", sans-serif;
/* max-width: 932px; */
margin: 0 auto;
}
.hero-section {
text-align: center;
position: relative; position: relative;
background-image: url("@/assets/image/product-introduction-img3.png");
background-repeat: no-repeat;
background-size: 100% auto;
background-position: top;
} }
.hero-content { .hero-content {
max-width: 1200px; position: relative;
margin: 0 auto; z-index: 2;
padding: 0 16px;
}
.hero-header {
display: flex;
flex-direction: column;
align-items: flex-start;
gap: 12px;
}
.title-section {
display: flex;
flex-direction: column;
gap: 16px;
margin-bottom: 32px;
padding: 0 16px;
}
.title-decoration {
width: 58px;
height: 7px;
background: #ff7bac;
margin: auto 0;
margin-top: 43px;
}
.stock-title {
font-family: "PingFang SC", sans-serif;
font-weight: 500;
font-size: 40px;
line-height: 1.4em;
letter-spacing: 3%;
color: #000000;
}
.gradient-badge {
width: 48px;
height: 4px;
border-radius: 4px;
background: #e62968;
} }
.hero-title { .hero-title {
font-size: 32px; font-size: 40px;
font-weight: 600; font-weight: 500;
letter-spacing: 0.02em; line-height: 56px;
color: #0d1b2a; letter-spacing: 1.2px;
padding: 153px 0;
color: #000;
z-index: 2;
}
.hero-bg-img {
position: absolute;
bottom: -84px;
left: 0;
width: 100%;
/* height: 100%; */
z-index: 1;
}
.core-value-card {
width: 932px;
padding: 40px 32px;
margin: 0 auto;
background-color: #fff;
border-radius: 16px;
box-shadow: 0px 3px 14px 0px rgba(0, 0, 0, 0.16);
text-align: left;
z-index: 2;
position: relative;
} }
.quote-layout { .card-content {
display: grid;
grid-template-columns: 420px 1fr;
align-items: start;
margin-top: 56px;
}
.price-card {
width: 420px;
min-height: 420px;
border-radius: 32px;
background: #ffffff;
border: 1px solid #f0f3f8;
box-shadow: 0 12px 32px rgba(16, 46, 86, 0.08);
display: flex; display: flex;
flex-direction: column; flex-direction: column;
justify-content: center; gap: 24px;
}
.card-title {
font-size: 40px;
font-weight: 500;
line-height: 56px;
letter-spacing: 1.2px;
}
.card-text {
font-size: 16px;
line-height: 22px;
color: #455363;
letter-spacing: 0.48px;
}
.section-header {
margin-bottom: 32px;
padding: 0 16px;
}
.decorator-bar {
width: 58px;
height: 7px;
background-color: #ff7bac;
margin-bottom: 16px;
}
.section-title {
font-size: 40px;
font-weight: 500;
line-height: 56px;
letter-spacing: 1.2px;
color: #000;
}
.features-section {
padding-top: 200px;
max-width: 932px;
margin: 0 auto;
}
.features-list {
display: flex;
flex-direction: column;
gap: 24px;
}
.feature-item {
display: flex;
flex-direction: column;
gap: 16px;
}
.feature-title {
font-size: 24px;
font-weight: 500;
line-height: 32px;
letter-spacing: 1.2px;
display: flex;
align-items: center; align-items: center;
padding: 16px; gap: 16px;
text-align: center; }
.feature-description {
font-size: 16px;
line-height: 22px;
color: #455363;
letter-spacing: 0.48px;
padding: 0 16px;
} }
.price-value { .solutions-section {
font-size: 110px; padding-top: 80px;
font-weight: 700; max-width: 932px;
letter-spacing: -0.03em; margin: 0 auto;
background: linear-gradient(90deg, #ff7bac 0%, #0ff 100%); }
-webkit-background-clip: text; .solutions-content {
-webkit-text-fill-color: transparent; display: flex;
text-transform: uppercase; gap: 16px;
}
.solutions-list {
display: flex;
flex-direction: column;
gap: 24px;
width: 466px;
}
.solution-item {
text-align: left;
display: flex;
flex-direction: column;
gap: 16px;
}
.solution-icon {
width: 92px;
height: 76px;
padding-left: 16px;
}
.solution-title {
font-size: 20px;
line-height: 28px;
font-weight: 500;
display: flex;
gap: 16px;
align-items: center;
}
.solution-description {
font-size: 16px;
line-height: 22px;
color: #455363;
letter-spacing: 0.48px;
padding: 0 16px;
}
.solution-image-container {
width: 434px;
height: 628px;
border-radius: 16px;
}
.solution-image {
width: 100%;
height: 100%;
object-fit: cover;
border-radius: 16px;
} }
.price-market { .advantages-section {
font-size: 22px; margin-top: 80px;
font-weight: 600; padding: 80px 0;
letter-spacing: 0.04em; background-image: url("@/assets/image/product-introduction-img4.png");
color: #0d1b2a; background-size: cover;
margin-bottom: 12px; background-position: center;
color: #fff;
position: relative;
} }
.price-time { .advantages-content {
font-size: 18px; max-width: 932px;
letter-spacing: 0.02em; margin: 0 auto;
color: #5a6775; display: flex;
gap: 16px;
position: relative;
z-index: 1;
} }
.stats-table { .advantages-header {
display: grid; width: 466px;
grid-template-columns: repeat(2, minmax(0, 1fr)); padding: 0 16px;
grid-auto-rows: minmax(0, 1fr); }
border-radius: 24px; .advantages-list {
width: 466px;
display: flex;
flex-direction: column;
gap: 24px;
}
.advantage-item {
display: flex;
flex-direction: column;
gap: 16px;
}
.advantage-title {
font-size: 24px;
font-weight: 500;
line-height: 32px;
letter-spacing: 1.2px;
display: flex;
gap: 16px;
align-items: center;
}
.advantage-description {
font-size: 16px;
line-height: 22px;
letter-spacing: 0.48px;
opacity: 0.7;
}
.text-white {
color: #fff;
}
.cta-section {
padding: 80px 0;
position: relative;
max-width: 932px;
margin: 0 auto;
overflow: hidden; overflow: hidden;
} }
.cta-content {
.stats-cell { display: flex;
justify-content: space-between;
align-items: center;
padding: 0 16px;
position: relative;
z-index: 1;
}
.cta-text {
display: flex; display: flex;
flex-direction: column; flex-direction: column;
justify-content: center; justify-content: space-between;
gap: 8px; height: 188px;
padding: 24px 32px;
border-bottom: 1px solid rgba(232, 237, 245, 0.85);
border-right: 1px solid rgba(232, 237, 245, 0.85);
} }
.cta-arrow {
.stats-cell:nth-child(2n) { width: 60px;
border-right: none; height: 32px;
} }
.cta-title {
.stats-cell:nth-last-child(-n + 2) { font-size: 40px;
border-bottom: none;
}
.stat-title {
font-size: 14px;
font-weight: 500; font-weight: 500;
letter-spacing: 0.08em; line-height: 56px;
text-transform: uppercase; letter-spacing: 1.2px;
color: #73849a;
} }
.cta-qr-code {
.stat-value { width: 188px;
font-size: 22px; height: 188px;
font-weight: 600; background-color: #90ffff;
letter-spacing: 0.02em; border-radius: 16px;
color: #10243b; padding: 14px;
} }
.cta-qr-code img {
.stat-title { width: 100%;
font-size: 18px; height: 100%;
font-weight: 500; object-fit: contain;
letter-spacing: 0.03em;
color: #455363;
} }
.cta-bg-img {
.stat-value { position: absolute;
font-size: 30px; top: 80px;
font-weight: 600; left: 201px;
letter-spacing: 0.04em; width: 530px;
color: #0d1b2a; height: 268px;
opacity: 0.8;
z-index: 0;
} }
.vertical-line {
.positive-change { width: 1px;
color: #00c48c; height: 20px;
} background: #ff7bac;
flex-shrink: 0;
.negative-change {
color: #cf3050;
}
.neutral-change {
color: #0d1b2a;
} }
</style> </style>