feat: 添加租房模块图标和功能优化

fix: 修复投票状态显示逻辑
refactor: 重命名ajaxget为ajaxGet
style: 优化CSS样式和布局
docs: 更新组件文档和注释
This commit is contained in:
DESKTOP-RQ919RC\Pc
2025-11-04 19:05:40 +08:00
parent a7d803f633
commit 07f4401f67
28 changed files with 735 additions and 241 deletions

View File

@@ -105,9 +105,12 @@
margin-right: 20px;
margin-bottom: 28px;
width: fit-content;
width: 100%;
}
#sectionIndex .matter .matter-content .info-box .right .link .item {
padding: 12px 0;
position: relative;
cursor: pointer;
}
#sectionIndex .matter .matter-content .info-box .right .link .item:not(:last-child) {
margin-right: 72px;
@@ -121,6 +124,40 @@
width: 12px;
height: 12px;
}
#sectionIndex .matter .matter-content .info-box .right .link .item:hover .QRcode-box {
display: flex;
}
#sectionIndex .matter .matter-content .info-box .right .link .item .QRcode-box {
position: absolute;
top: 51px;
left: 50%;
transform: translateX(-50%);
width: 180px;
height: 240px;
background-color: #ffffff;
border-radius: 10px;
box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.12156863);
flex-direction: column;
z-index: 1;
display: none;
}
#sectionIndex .matter .matter-content .info-box .right .link .item .QRcode-box .QRcode-img {
width: 130px;
height: 130px;
margin-bottom: 12px;
}
#sectionIndex .matter .matter-content .info-box .right .link .item .QRcode-box .name {
font-family: "PingFangSC-Semibold", "PingFang SC Semibold", "PingFang SC", sans-serif;
font-weight: 650;
font-style: normal;
font-size: 16px;
color: #000000;
margin-bottom: 9px;
}
#sectionIndex .matter .matter-content .info-box .right .link .item .QRcode-box .hint {
font-size: 13px;
color: #333333;
}
#sectionIndex .matter .matter-content .info-box .right .bottom {
justify-content: space-between;
margin-right: 20px;