Files
jiebanke/mini-program/pages.json
ylweng cbee609e78 refactor(backend): 重构动物相关 API 接口
- 更新了动物数据结构和相关类型定义
- 优化了动物列表、详情、创建、更新和删除接口
- 新增了更新动物状态接口
- 移除了与认领记录相关的接口
-调整了 API 响应结构
2025-08-31 23:26:25 +08:00

130 lines
3.0 KiB
JSON

{
"pages": [
{
"path": "pages/index/index",
"style": {
"navigationBarTitleText": "结伴客",
"navigationBarBackgroundColor": "#007aff",
"navigationBarTextStyle": "white"
}
},
{
"path": "pages/travel/list",
"style": {
"navigationBarTitleText": "旅行计划",
"navigationBarBackgroundColor": "#007aff",
"navigationBarTextStyle": "white"
}
},
{
"path": "pages/animal/list",
"style": {
"navigationBarTitleText": "动物认养",
"navigationBarBackgroundColor": "#007aff",
"navigationBarTextStyle": "white"
}
},
{
"path": "pages/flower/list",
"style": {
"navigationBarTitleText": "鲜花配送",
"navigationBarBackgroundColor": "#ff6b8b",
"navigationBarTextStyle": "white"
}
},
{
"path": "pages/promotion/invite",
"style": {
"navigationBarTitleText": "邀请好友",
"navigationBarBackgroundColor": "#667eea",
"navigationBarTextStyle": "white"
}
},
{
"path": "pages/search/index",
"style": {
"navigationBarTitleText": "搜索",
"navigationBarBackgroundColor": "#007aff",
"navigationBarTextStyle": "white"
}
},
{
"path": "pages/auth/login",
"style": {
"navigationBarTitleText": "登录",
"navigationBarBackgroundColor": "#007aff",
"navigationBarTextStyle": "white"
}
},
{
"path": "pages/travel/publish",
"style": {
"navigationBarTitleText": "发布旅行",
"navigationBarBackgroundColor": "#007aff",
"navigationBarTextStyle": "white"
}
},
{
"path": "pages/travel/comments",
"style": {
"navigationBarTitleText": "评论详情",
"navigationBarBackgroundColor": "#007aff",
"navigationBarTextStyle": "white"
}
}
],
"globalStyle": {
"navigationBarTextStyle": "white",
"navigationBarTitleText": "结伴客",
"navigationBarBackgroundColor": "#007aff",
"backgroundColor": "#f8f9fa",
"app-plus": {
"titleNView": {
"backgroundColor": "#007aff",
"titleColor": "#ffffff",
"titleSize": "17px"
}
}
},
"tabBar": {
"color": "#7A7E83",
"selectedColor": "#007aff",
"borderStyle": "black",
"backgroundColor": "#ffffff",
"list": [
{
"pagePath": "pages/index/index",
"iconPath": "static/tabbar/home.png",
"selectedIconPath": "static/tabbar/home-active.png",
"text": "首页"
},
{
"pagePath": "pages/travel/list",
"iconPath": "static/tabbar/travel.png",
"selectedIconPath": "static/tabbar/travel-active.png",
"text": "旅行"
},
{
"pagePath": "pages/animal/list",
"iconPath": "static/tabbar/animal.png",
"selectedIconPath": "static/tabbar/animal-active.png",
"text": "认养"
},
{
"pagePath": "pages/flower/list",
"iconPath": "static/tabbar/flower.png",
"selectedIconPath": "static/tabbar/flower-active.png",
"text": "鲜花"
},
{
"pagePath": "pages/user/center",
"iconPath": "static/tabbar/user.png",
"selectedIconPath": "static/tabbar/user-active.png",
"text": "我的"
}
]
},
"uniIdRouter": {}
}