hookehuyr

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

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