hookehuyr

重构: 统一术语并修复展位图库布局

更新README、页面配置及JS注释中的术语,将“打卡详情”统一改为“关卡详情”
重构展位图库的CSS布局,将column布局替换为flex布局优化展示效果
......@@ -40,7 +40,7 @@
当前流程:
1. 用户进入扫码卡详情页
1. 用户进入扫码卡详情页
2. 点击“扫码打卡”时先检查是否已有家庭
3. 没有家庭则提示后跳转 `Welcome`
4. `Welcome -> AddProfile -> Welcome -> CreateFamily/JoinFamily -> 原详情页`
......
......@@ -13,13 +13,13 @@
}
.booth-map-gallery-grid {
column-count: 2;
column-gap: 20rpx;
display: flex;
flex-direction: column;
gap: 20rpx;
}
.booth-map-gallery-item {
break-inside: avoid;
margin-bottom: 20rpx;
width: 100%;
border-radius: 24rpx;
overflow: hidden;
background: #ffffff;
......
export default {
navigationBarTitleText: '卡详情',
navigationBarTitleText: '卡详情',
}
......
/**
* @description 解析小程序码进入扫码卡详情页时的 scene 参数
* @description 解析小程序码进入扫码卡详情页时的 scene 参数
* @param {string} rawScene - scene 原始值,兼容 `detailId,activityId` 和 querystring 两种格式
* @returns {{activityId:string, detailId:string, rawScene:string}}
*/
......