This commit is contained in:
zzy 2023-04-17 14:33:48 +08:00
parent bee8aa0db9
commit 7da913090d
4 changed files with 37 additions and 21 deletions

View File

@ -42,7 +42,7 @@ export default {
Institutional:'Institutional',
TotalOfferShares:'Total Offer Shares',
FinalAllocation:'Final Allocation',
Listingdate:'Listing date',
Listingdate:'Listing Date',
QuantityMillion:'Quantity (Million)',
Ratio:'Ratio'
},

View File

@ -13,7 +13,6 @@
<el-button size="small" @click="selectDate('prev-month')">
<img src="@/assets/1x/source11.png">
</el-button>
<!-- <span class="month">{{ date.split(' ').slice(-1).join() }}</span> -->
<span class="month">{{ showMounth(date) }}</span>
@ -96,7 +95,7 @@ const backRouter = () => {
background-color: #1f4055;
z-index: 1;
border: #1f4055 1px solid;
.right-top {
display: flex;
// margin-left: 40px;
@ -144,7 +143,7 @@ const backRouter = () => {
width: 90vw;
background-color: #ffffff;
height: 40vh;
margin-top: 150px;
margin-top: 12vh;
// margin-left: 20px;
// text-align: center;
// line-height: 500px;
@ -196,9 +195,17 @@ const backRouter = () => {
:deep(.el-calendar__body) {
background-color: #e8ebee;
height: 40vh;
}
:deep(.el-calendar-table thead th){
padding:2px 0;
font-weight: 550;
}
:deep(.el-calendar-table){
margin-top: 20rem;
width: 375rem;
transform: translateX(-19rem);
}
:deep(.el-calendar) {
width: 100vw;
font-family: "Calibri";
@ -217,7 +224,7 @@ const backRouter = () => {
background-color: rgb(255, 255, 255);
height: 33px;
border: none;
margin-top: 30px;
margin-top: 25px;
display: flex;
justify-content: center;
align-items: center;
@ -256,5 +263,6 @@ const backRouter = () => {
:deep(.is-selected) {
color: red;
}
}
</style>

View File

@ -1131,7 +1131,7 @@ const showMounth = (date: any) => {
:deep(.el-calendar-table) {
width: 450px;
background-color: red !important;
// background-color: red !important;
padding-left: 10px 75px 27px !important;
cursor: default;

View File

@ -200,10 +200,10 @@ const getHomeIpoList = async () => {
// const res = await getDataFromId('home');
// const data = (res as any).map((item: any) => {
const data = (res as any).data.map((item: any) => {
let { stkCode, dateTime, status, ipoID, companyEngShort, companyChiShort, priceFinal, logoLink, priceMin, priceMax, listingDate, pricingDate } = item;
let { stkCode, dateTime, status, ipoID, companyEngFull, companyChiFull, priceFinal, logoLink, priceMin, priceMax, listingDate, pricingDate } = item;
return {
logolinks: logoLink,
title: companyEngShort + ";" + companyChiShort,
title: companyEngFull + ";" + companyChiFull,
status: status,
number: stkCode,
HKD: priceFinal ? priceFinal : priceMinMax(),
@ -214,9 +214,9 @@ const getHomeIpoList = async () => {
}
function priceMinMax() {
if (priceMin && priceMax) {
return `${priceMin}-${priceMax}`
return `${priceMin} - ${priceMax}`
} else if (priceMin) {
return `${priceMin}-`
return `${priceMin} - `
} else if (priceMax) {
return ` -${priceMax}`
} else {
@ -256,13 +256,13 @@ const getSearchIpoList = async (keyword: string) => {
throw ("222")
}
const data = (res as any).data.map((item: any) => {
let { stkCode, dateTime, status, ipoID, companyEngShort, companyChiShort, priceFinal, logoLink, priceMin, priceMax, listingDate, pricingDate } = item;
let { stkCode, dateTime, status, ipoID, companyEngFull, companyChiFull, priceFinal, logoLink, priceMin, priceMax, listingDate, pricingDate } = item;
return {
logolinks: logoLink,
title: companyEngShort + ";" + companyChiShort,
title: companyEngFull + ";" + companyChiFull,
status: status,
number: stkCode,
HKD: priceFinal ? priceFinal : priceMinMax(),
HKD: priceFinal ? priceFinal.toFixed(3) : priceMinMax(),
time: listingDate ? listingDate : pricingDate,
ipoID: ipoID,
price: priceFinal,
@ -270,11 +270,11 @@ const getSearchIpoList = async (keyword: string) => {
}
function priceMinMax() {
if (priceMin && priceMax) {
return `${priceMin}-${priceMax}`
return `${priceMin.toFixed(3)} - ${priceMax.toFixed(3)}`
} else if (priceMin) {
return `${priceMin}-`
return `${priceMin.toFixed(3)} - `
} else if (priceMax) {
return ` -${priceMax}`
return ` -${priceMax.toFixed(3)}`
} else {
return " - "
}
@ -753,14 +753,18 @@ const showMounth = (date: any) => {
}
}
:deep(.el-calendar-table){
width: 420px;
transform: translateX(-20px);
margin-top: 20px;
}
:deep(.el-button--small) {
border: none
}
:deep(.el-calendar__body) {
background-color: #e8ebee;
height: 385px;
}
:deep(.el-calendar) {
@ -795,8 +799,12 @@ const showMounth = (date: any) => {
:deep(.el-calendar-table td) {
border: none;
text-align: center;
font-weight: 800;
}
:deep(.el-calendar-table thead th ){
padding:2px;
font-weight: 550px;
}
:deep(.el-calendar .el-calendar-table .el-calendar-day) {
padding: 0px;
text-align: center;