no message

This commit is contained in:
A1300399510 2024-11-29 18:39:47 +08:00
parent d473163a03
commit a759fda575
9 changed files with 24 additions and 18 deletions

View File

@ -523,7 +523,7 @@
.data .item .word {
background-color: #f9f8f8;
border-radius: 3px;
padding: 10px 15px;
padding: 10px;
font-size: 14px;
color: #7f7f7f;
margin-bottom: 12px;

View File

@ -584,7 +584,7 @@
.word {
background-color: rgba(249, 248, 248, 1);
border-radius: 3px;
padding: 10px 15px;
padding: 10px;
font-size: 14px;
color: #7f7f7f;
margin-bottom: 12px;

View File

@ -591,7 +591,7 @@
.content .body .right .list .item .word {
background-color: #f9f8f8;
border-radius: 3px;
padding: 10px 15px;
padding: 10px;
font-size: 14px;
color: #7f7f7f;
margin-bottom: 12px;
@ -696,3 +696,6 @@
width: 10px;
height: 8px;
}
.content .body .right .empty-box .icon {
margin-bottom: 10px;
}

View File

@ -659,7 +659,7 @@
.word {
background-color: rgba(249, 248, 248, 1);
border-radius: 3px;
padding: 10px 15px;
padding: 10px;
font-size: 14px;
color: #7f7f7f;
margin-bottom: 12px;
@ -775,6 +775,10 @@
}
}
}
.empty-box .icon {
margin-bottom: 10px;
}
}
}
}

View File

@ -143,7 +143,7 @@
.boxbox .body .left .list .item .word {
background-color: #f9f8f8;
border-radius: 3px;
padding: 8px 15px;
padding: 10px;
font-size: 14px;
color: #7f7f7f;
margin-bottom: 15px;

View File

@ -152,7 +152,7 @@
.word {
background-color: rgba(249, 248, 248, 1);
border-radius: 3px;
padding: 8px 15px;
padding: 10px;
font-size: 14px;
color: #7f7f7f;
margin-bottom: 15px;

View File

@ -108,7 +108,7 @@
background-color: #fbfbfb;
border-top: 1px solid #ebebeb;
border-bottom: 1px solid #ebebeb;
width: 200px;
width: calc(100% + 1px);
position: relative;
color: #000000;
font-weight: 650;
@ -254,7 +254,7 @@
.body .right .list .item .word {
background-color: #f9f8f8;
border-radius: 5px;
padding: 8px 15px;
padding: 10px;
font-size: 14px;
color: #7f7f7f;
margin-bottom: 12px;

View File

@ -115,7 +115,7 @@
background-color: rgba(251, 251, 251, 1);
border-top: 1px solid rgba(235, 235, 235, 1);
border-bottom: 1px solid rgba(235, 235, 235, 1);
width: 200px;
width: calc(100% + 1px);
position: relative;
color: #000000;
font-weight: 650;
@ -272,7 +272,7 @@
.word {
background-color: rgba(249, 248, 248, 1);
border-radius: 5px;
padding: 8px 15px;
padding: 10px;
font-size: 14px;
color: #7f7f7f;
margin-bottom: 12px;

View File

@ -124,7 +124,6 @@ function getBaseData() {
return new Promise((resolve, reject) => {
// const storedTime = localStorage.getItem("dataTimestamp")
// const storedData = localStorage.getItem("basicData")
// const currentTime = new Date().getTime()
// const timeDiff = currentTime - parseInt(storedTime)
// if (storedTime && storedData && timeDiff <= 5 * 60 * 1000) {
@ -147,13 +146,13 @@ function getBaseData() {
encodekey: data.encodekey,
user,
}
if (user.uin > 0) {
localStorage.setItem("dataTimestamp", new Date().getTime())
localStorage.setItem("basicData", JSON.stringify(basicData))
} else {
localStorage.removeItem("basicData")
localStorage.removeItem("dataTimestamp")
}
// if (user.uin > 0) {
// localStorage.setItem("dataTimestamp", new Date().getTime())
// localStorage.setItem("basicData", JSON.stringify(basicData))
// } else {
// localStorage.removeItem("basicData")
// localStorage.removeItem("dataTimestamp")
// }
resolve(basicData)
})
})