hookehuyr

feat(页面配置): 添加并更新多个页面的导航栏标题配置

为多个页面添加初始配置或更新现有配置,统一设置导航栏标题
更新 README.md 添加弱网环境优化任务
...@@ -65,5 +65,6 @@ ...@@ -65,5 +65,6 @@
65 * [ ] 小程序授权流程有问题 65 * [ ] 小程序授权流程有问题
66 * [ ] 完善支付流程(目前为模拟/H5跳转) 66 * [ ] 完善支付流程(目前为模拟/H5跳转)
67 * [ ] 优化图片资源加载(考虑使用 CDN 或分包) 67 * [ ] 优化图片资源加载(考虑使用 CDN 或分包)
68 +* [ ] 弱网环境下的优化, 如: 用户端可以获取当前用户的预约码, 管理端可以根据预约码核销预约码
68 * [ ] 增强网络请求的错误处理与重试机制 69 * [ ] 增强网络请求的错误处理与重试机制
69 * [ ] 补充单元测试 70 * [ ] 补充单元测试
......
1 +/*
2 + * @Date: 2025-06-28 10:33:00
3 + * @LastEditors: hookehuyr hookehuyr@gmail.com
4 + * @LastEditTime: 2026-01-06 22:15:56
5 + * @FilePath: /xyxBooking-weapp/src/pages/addVisitor/index.config.js
6 + * @Description: 添加参观者配置
7 + */
8 +export default {
9 + navigationBarTitleText: '添加参观者'
10 +}
1 +/*
2 + * @Date: 2025-06-28 10:33:00
3 + * @LastEditors: hookehuyr hookehuyr@gmail.com
4 + * @LastEditTime: 2026-01-06 22:15:26
5 + * @FilePath: /xyxBooking-weapp/src/pages/booking/index.config.js
6 + * @Description: 预约配置
7 + */
8 +export default {
9 + navigationBarTitleText: '预约'
10 +}
1 +/*
2 + * @Date: 2025-06-28 10:33:00
3 + * @LastEditors: hookehuyr hookehuyr@gmail.com
4 + * @LastEditTime: 2026-01-06 22:16:26
5 + * @FilePath: /xyxBooking-weapp/src/pages/bookingCode/index.config.js
6 + * @Description: 预约码配置
7 + */
8 +export default {
9 + navigationBarTitleText: '预约码'
10 +}
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 +}
1 +/*
2 + * @Date: 2025-06-28 10:33:00
3 + * @LastEditors: hookehuyr hookehuyr@gmail.com
4 + * @LastEditTime: 2026-01-06 22:16:41
5 + * @FilePath: /xyxBooking-weapp/src/pages/bookingList/index.config.js
6 + * @Description: 预约记录配置
7 + */
8 +export default {
9 + navigationBarTitleText: '预约记录'
10 +}
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 }
......
1 +/*
2 + * @Date: 2025-06-28 10:33:00
3 + * @LastEditors: hookehuyr hookehuyr@gmail.com
4 + * @LastEditTime: 2026-01-06 22:14:19
5 + * @FilePath: /xyxBooking-weapp/src/pages/notice/index.config.js
6 + * @Description: 预约须知配置
7 + */
8 +export default {
9 + navigationBarTitleText: '预约须知'
10 +}
1 +/*
2 + * @Date: 2025-06-28 10:33:00
3 + * @LastEditors: hookehuyr hookehuyr@gmail.com
4 + * @LastEditTime: 2026-01-06 22:17:50
5 + * @FilePath: /xyxBooking-weapp/src/pages/search/index.config.js
6 + * @Description: 搜索配置
7 + */
8 +export default {
9 + navigationBarTitleText: '邀请码'
10 +}
1 +/*
2 + * @Date: 2025-06-28 10:33:00
3 + * @LastEditors: hookehuyr hookehuyr@gmail.com
4 + * @LastEditTime: 2026-01-06 22:15:41
5 + * @FilePath: /xyxBooking-weapp/src/pages/submit/index.config.js
6 + * @Description: 预约人员信息配置
7 + */
8 +export default {
9 + navigationBarTitleText: '预约人员信息'
10 +}
1 +/*
2 + * @Date: 2025-06-28 10:33:00
3 + * @LastEditors: hookehuyr hookehuyr@gmail.com
4 + * @LastEditTime: 2026-01-06 22:16:12
5 + * @FilePath: /xyxBooking-weapp/src/pages/success/index.config.js
6 + * @Description: 预约成功配置
7 + */
8 +export default {
9 + navigationBarTitleText: '预约成功'
10 +}
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 }
......