feat(签到组件): 添加签到功能及相关样式和逻辑

- 新增签到组件HTML模板和CSS样式
- 实现签到功能的核心逻辑和交互
- 添加签到日历和用户列表展示
- 支持签到规则查看和签到操作
- 集成API接口获取签到数据和提交签到
This commit is contained in:
DESKTOP-RQ919RC\Pc
2025-11-24 19:12:53 +08:00
parent 8c62e294cf
commit aa0723d138
7 changed files with 958 additions and 5 deletions

View File

@@ -149,6 +149,21 @@ body {
padding: 20px;
border-radius: 0 0 20px 0;
&::after {
content: "";
position: absolute;
top: 26px;
left: -11px;
width: 0;
height: 0;
transform: translateX(-50%);
border: 12px solid #000;
border-top-color: transparent;
border-bottom-color: transparent;
border-left-color: transparent;
border-right-color: #fdda55;
}
.rule-box {
background-color: #fff;
-moz-box-shadow: 0px 0px 3px rgba(0, 0, 0, 0.0705882352941176);