feat(页面配置): 添加并更新多个页面的导航栏标题配置
为多个页面添加初始配置或更新现有配置,统一设置导航栏标题 更新 README.md 添加弱网环境优化任务
Showing
15 changed files
with
129 additions
and
3 deletions
| ... | @@ -65,5 +65,6 @@ | ... | @@ -65,5 +65,6 @@ |
| 65 | * [ ] 小程序授权流程有问题 | 65 | * [ ] 小程序授权流程有问题 |
| 66 | * [ ] 完善支付流程(目前为模拟/H5跳转) | 66 | * [ ] 完善支付流程(目前为模拟/H5跳转) |
| 67 | * [ ] 优化图片资源加载(考虑使用 CDN 或分包) | 67 | * [ ] 优化图片资源加载(考虑使用 CDN 或分包) |
| 68 | +* [ ] 弱网环境下的优化, 如: 用户端可以获取当前用户的预约码, 管理端可以根据预约码核销预约码 | ||
| 68 | * [ ] 增强网络请求的错误处理与重试机制 | 69 | * [ ] 增强网络请求的错误处理与重试机制 |
| 69 | * [ ] 补充单元测试 | 70 | * [ ] 补充单元测试 | ... | ... |
src/pages/addVisitor/index.config.js
0 → 100644
src/pages/booking/index.config.js
0 → 100644
src/pages/bookingCode/index.config.js
0 → 100644
src/pages/bookingDetail/index.config.js
0 → 100644
| 1 | +/* | ||
| 2 | + * @Date: 2025-06-28 10:33:00 | ||
| 3 | + * @LastEditors: hookehuyr hookehuyr@gmail.com | ||
| 4 | + * @LastEditTime: 2026-01-06 22:16:52 | ||
| 5 | + * @FilePath: /xyxBooking-weapp/src/pages/bookingDetail/index.config.js | ||
| 6 | + * @Description: 预约记录详情配置 | ||
| 7 | + */ | ||
| 8 | +export default { | ||
| 9 | + navigationBarTitleText: '预约记录详情' | ||
| 10 | +} |
src/pages/bookingList/index.config.js
0 → 100644
| 1 | +/* | ||
| 2 | + * @Date: 2026-01-06 20:57:04 | ||
| 3 | + * @LastEditors: hookehuyr hookehuyr@gmail.com | ||
| 4 | + * @LastEditTime: 2026-01-06 22:17:37 | ||
| 5 | + * @FilePath: /xyxBooking-weapp/src/pages/callback/index.config.js | ||
| 6 | + * @Description: 反馈页配置 | ||
| 7 | + */ | ||
| 1 | export default { | 8 | export default { |
| 2 | navigationBarTitleText: '反馈页' | 9 | navigationBarTitleText: '反馈页' |
| 3 | } | 10 | } | ... | ... |
| 1 | +/* | ||
| 2 | + * @Date: 2025-06-28 10:33:00 | ||
| 3 | + * @LastEditors: hookehuyr hookehuyr@gmail.com | ||
| 4 | + * @LastEditTime: 2026-01-06 22:13:24 | ||
| 5 | + * @FilePath: /xyxBooking-weapp/src/pages/index/index.config.js | ||
| 6 | + * @Description: 首页配置 | ||
| 7 | + */ | ||
| 1 | export default { | 8 | export default { |
| 2 | - navigationBarTitleText: '首页' | 9 | + navigationBarTitleText: '西园寺预约' |
| 3 | } | 10 | } | ... | ... |
| 1 | +/* | ||
| 2 | + * @Date: 2026-01-06 20:58:28 | ||
| 3 | + * @LastEditors: hookehuyr hookehuyr@gmail.com | ||
| 4 | + * @LastEditTime: 2026-01-06 22:17:02 | ||
| 5 | + * @FilePath: /xyxBooking-weapp/src/pages/me/index.config.js | ||
| 6 | + * @Description: 参观者配置 | ||
| 7 | + */ | ||
| 1 | export default { | 8 | export default { |
| 2 | - navigationBarTitleText: '我的' | 9 | + navigationBarTitleText: '参观者' |
| 3 | } | 10 | } | ... | ... |
src/pages/notice/index.config.js
0 → 100644
src/pages/search/index.config.js
0 → 100644
src/pages/submit/index.config.js
0 → 100644
src/pages/success/index.config.js
0 → 100644
| 1 | +/* | ||
| 2 | + * @Date: 2026-01-06 20:58:27 | ||
| 3 | + * @LastEditors: hookehuyr hookehuyr@gmail.com | ||
| 4 | + * @LastEditTime: 2026-01-06 22:18:04 | ||
| 5 | + * @FilePath: /xyxBooking-weapp/src/pages/visitorList/index.config.js | ||
| 6 | + * @Description: 参观者列表配置 | ||
| 7 | + */ | ||
| 1 | export default { | 8 | export default { |
| 2 | - navigationBarTitleText: '参观者' | 9 | + navigationBarTitleText: '参观者列表' |
| 3 | } | 10 | } | ... | ... |
| 1 | +/* | ||
| 2 | + * @Date: 2026-01-06 20:56:55 | ||
| 3 | + * @LastEditors: hookehuyr hookehuyr@gmail.com | ||
| 4 | + * @LastEditTime: 2026-01-06 22:17:22 | ||
| 5 | + * @FilePath: /xyxBooking-weapp/src/pages/waiting/index.config.js | ||
| 6 | + * @Description: 支付中配置 | ||
| 7 | + */ | ||
| 1 | export default { | 8 | export default { |
| 2 | navigationBarTitleText: '支付中' | 9 | navigationBarTitleText: '支付中' |
| 3 | } | 10 | } | ... | ... |
-
Please register or login to post a comment