fix(bi): 添加投币数量必须大于0的校验

feat(item-bottom): 实现二维码弹窗自适应右侧边界
添加判断逻辑使二维码弹窗在靠近右侧边界时向左弹出

refactor(public.js): 优化ajax请求配置和登录跳转逻辑
统一设置axios默认配置,提取登录跳转函数

style(public.css): 调整QRcode-box.right的定位
修复二维码弹窗靠近右侧时的显示问题

fix(details.js): 修复粗体标记正则匹配多行内容
使用[\s\S]*?匹配可能的多行内容

refactor(index.js): 优化列表加载和滚动逻辑
移除模拟数据,添加加载状态,调整滚动加载阈值

chore: 更新html模板中的唯一标识和广告类名
This commit is contained in:
DESKTOP-RQ919RC\Pc
2025-11-19 19:27:43 +08:00
parent f49d937f19
commit c9e229a5cd
12 changed files with 211 additions and 217 deletions

View File

@@ -701,6 +701,9 @@ body {
box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.16862745);
flex-direction: column;
}
.item-box .bottom .bottom-item .share-box .share-item .QRcode-box.right {
left: -140px;
}
.item-box .bottom .bottom-item .share-box .share-item .QRcode-box .QRcode {
width: 100px;
height: 100px;
@@ -1681,7 +1684,6 @@ body {
line-height: 36px;
color: #333333;
font-size: 14px;
height: 32px;
line-height: 32px;
padding: 0 14px;
background-color: #f6f6f6;

View File

@@ -851,6 +851,10 @@ body {
box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.16862745);
flex-direction: column;
&.right {
left: -140px;
}
.QRcode {
width: 100px;
height: 100px;
@@ -2024,7 +2028,6 @@ body {
line-height: 36px;
color: #333333;
font-size: 14px;
height: 32px;
line-height: 32px;
padding: 0 14px;
background-color: rgba(246, 246, 246, 1);