解决appJSON[“tabBar“][1][“pagePath“] “pages/classify/index“报错

在初次尝试创建微信小程序时,遇到一个关于tabbar页面路径的报错。错误提示表明在app.json的pages配置与tabbar的pagePath不匹配。解决办法是确保pages数组中的文件路径与tabbar配置完全一致,确保每个tabbar项对应的页面在项目中实际存在。

今天首次接触微信小程序,准备用微信小程序写一个简单的tabbar效果
但是执行的时候报错:

出现这个报错的原因是在app.json中pages中的文件路径与下面tabbar中所写的路径不一致;或者你在tabbar中的pagePath路径在pages数组中根本不存在 

我正确的写法应该是

 

{ "lazyCodeLoading": "requiredComponents", "pages": [{ "path": "pages/home/index", "style": { "navigationBarTitleText": "首页", "onReachBottomDistance": 50, "enablePullDownRefresh": true, "navigationStyle": "custom", "navigationBarTextStyle": "black" } }, { "path": "pages/course/index", "style": { "navigationBarTitleText": "课程", "navigationStyle": "custom" } }, { "path": "pages/course/StaticCustomerService", "style": { "navigationBarTitleText": "客服", "navigationStyle": "custom" } }, { "path": "pages/course/detail", "style": { "navigationBarTitleText": "详情", "navigationBarBackgroundColor": "#F4F9FF" // "navigationStyle": "custom" } }, { "path": "pages/course/player", "style": { "navigationBarTitleText": "播放", "navigationStyle": "custom" } }, { "path": "pages/course/order_detail", "style": { "navigationBarTitleText": "订单详情", "navigationStyle": "custom" } }, { "path": "pages/guide/index", "style": { "app-plus": { "titleNView": false }, "navigationStyle": "custom", "disableScroll": true } }, { "path": "pages/live/index", "style": { "navigationBarTitleText": "直播", "navigationStyle": "custom" } }, { "path": "pages/index/index", "style": { "onReachBottomDistance": 50, "navigationBarTitleText": "商城", "navigationStyle": "custom", "navigationBarTextStyle": "black", "enablePullDownRefresh": true } }, { "path": "pages/live/live-player", "style": { "navigationStyle": "custom", "disableScroll": true, "app-plus": { "bounce": "none", "pullToRefresh": { "support": false }, "titleNView": { "autoBackButton": false, "backgroundColor": "transparent" } } } }, { "path": "pages/goods_cate/index", "style": { "navigationBarTitleText": "商品分类", "navigationStyle": "custom" } }, { "path": "pages/message/message", "style": { "navigationBarTitleText": "消息" } }, { "path": "pages/discover_index/index", "style": { "navigationBarTitleText": "逛逛", "navigationStyle": "custom", "navigationBarTextStyle": "black" } }, { "path": "pages/release/index", "style": { "navigationBarTitleText": "发布", "navigationStyle": "custom", "navigationBarTextStyle": "black" } }, { "path": "pages/user/list", "style": { "navigationBarTitleText": "个人中心", "navigationStyle": "custom", "navigationBarTextStyle": "black", "navigationBarBackgroundColor": "#fff", "app-plus": { "titleNView": { "type": "default" } } } }, { "path": "pages/message/list", "style": { "navigationBarTitleText": "对话" } } ], "subPackages": [{ "root": "pages/homeSub", "name": "homeSubPackage", "pages": [{ "path": "Personal", "style": { "navigationBarTitleText": "个人中心", "navigationStyle": "custom", "navigationBarTextStyle": "black", "enablePullDownRefresh": true } }, { "path": "NoteDetail", "name": "notedetail", "style": { "navigationBarTitleText": "详情页", "navigationStyle": "custom", "navigationBarTextStyle": "black" // "enablePullDownRefresh": true } }, { "path": "list", "name": "notedelist", "style": { "navigationBarTitleText": "直播列表", "navigationStyle": "custom", "navigationBarTextStyle": "black", "enablePullDownRefresh": true } } ] }, // 新增 orderAddcartSub 子包:存放原主包中 pages/order_addcart/order_addcart 页面 { "root": "pages/order_addcart", "name": "orderAddcartSubPackage", "pages": [{ "path": "order_addcart", "style": { "navigationStyle": "custom", "navigationBarTitleText": "购物车" } }] }, // 原有 recordSub 子包:存放 pages/record/ 下所有页面 { "root": "pages/record", "name": "recordSubPackage", "pages": [{ "path": "create-live", "style": { "navigationBarTitleText": "" } }, { "path": "live-permission", "style": { "navigationBarTitleText": "" } }, { "path": "live-preview", "style": { "navigationBarTitleText": "" } }, { "path": "live-broadcast", "style": { "navigationBarTitleText": "" } } ] }, { "root": "pages/userSub", "name": "userSubPackage", "pages": [{ "path": "index", "style": { "navigationBarTitleText": "个人中心" } }, { "path": "Modifyinformation", "style": { "navigationBarTitleText": "修改资料" } }, { "path": "Allfeatures", "style": { "navigationBarTitleText": "全部功能", "navigationBarBackgroundColor": "#f5f5f5" } }, { "path": "DouyinSettings", "style": { "navigationBarTitleText": "设置" } }, { "path": "follow", "style": { "navigationBarTitleText": "关注列表" } }, { "path": "fans", "style": { "navigationBarTitleText": "粉丝列表" } }, { "path": "common/creator", "style": { "navigationBarTitleText": "创作者申请" } }, { "path": "common/mobile-complete", "style": { "navigationBarTitleText": "创作者中心" } } ] }, { "root": "pages/users", "name": "users", "pages": [{ "path": "web_page/index", "style": { "app-plus": { "titleNView": { "type": "default" } } } }, { "path": "same_city/index", "style": { "navigationBarTitleText": "同城位置", "app-plus": { "titleNView": { "type": "default" } } } }, { "path": "AI_face/index", "style": { "navigationBarTitleText": "Ai检测", "app-plus": { "titleNView": { "type": "default" } } } }, { "path": "AI_face/list", "style": { "navigationBarTitleText": "AI面诊分析结果", "app-plus": { "titleNView": { "type": "default" } } } }, { "path": "AI_face/face", "style": { "navigationBarTitleText": "AI面部分析", "app-plus": { "titleNView": { "type": "default" } } } }, { "path": "user_info/index", "style": { "navigationBarTitleText": "个人资料", "app-plus": { "titleNView": { "type": "default" } } } }, { "path": "user_setting/index", "style": { "navigationBarTitleText": "个人信息", "app-plus": { "titleNView": { "type": "default" } } } }, { "path": "user_money/index", "style": { "navigationBarTitleText": "我的账户", "navigationStyle": "custom", "app-plus": { "titleNView": { "type": "default" } } } }, { "path": "user_bill/index", "style": { "navigationBarTitleText": "账单明细", "app-plus": { "titleNView": { "type": "default" } } } }, { "path": "user_spread_user/index", "style": { "navigationBarTitleText": "我的推广", "navigationBarTextStyle": "black", "navigationBarBackgroundColor": "#fff", "app-plus": { "titleNView": { "type": "default" } } } }, { "path": "user_spread_code/index", "style": { "navigationBarTitleText": "推广海报", "app-plus": { "titleNView": { "type": "default" } } } }, { "path": "user_spread_money/index", "style": { "navigationBarTitleText": "佣金记录", "app-plus": { "titleNView": { "type": "default" } } } }, { "path": "user_transferOut/index", "style": { "navigationBarTitleText": "佣金提现", "navigationStyle": "custom", "app-plus": { "titleNView": { "type": "default" } } } }, { "path": "user_transferOut/status", "style": { "navigationBarTitleText": "提现审核", "app-plus": { "titleNView": { "type": "default" } } } }, { "path": "user_phone/index", "style": { "navigationBarTitleText": "修改手机号", "navigationBarBackgroundColor": "#e93323", "navigationBarTextStyle": "black", "app-plus": { "titleNView": { "type": "default" } } } }, { "path": "user_payment/index", "style": { "navigationBarTitleText": "余额充值", "app-plus": { "titleNView": { "type": "default" } } } }, { "path": "user_spread_brokerage_out/index", "style": { "navigationBarTitleText": "佣金转入", "app-plus": { "titleNView": { "type": "default" } } } }, { "path": "user_pwd_edit/index", "style": { "navigationBarTitleText": "修改密码", "navigationBarTextStyle": "black", "app-plus": { "titleNView": { "type": "default" } } } }, { "path": "promoter-list/index", "style": { "navigationBarTitleText": "推广人列表", "app-plus": { "titleNView": { "type": "default" } } } }, { "path": "promoter-order/index", "style": { "navigationBarTitleText": "推广人订单", "app-plus": { "titleNView": { "type": "default" } } } }, { "path": "promoter_rank/index", "style": { "navigationBarTitleText": "推广人排行", "navigationStyle": "custom" } }, { "path": "commission_rank/index", "style": { "navigationBarTitleText": "佣金排行", "navigationStyle": "custom" } }, { "path": "login/index", "style": { "navigationBarTitleText": "登录", "app-plus": { "titleNView": { "type": "default" } } } }, { "path": "wechat_login/index", "style": { "navigationBarTitleText": "账户登录", "navigationStyle": "custom", "app-plus": { "titleNView": { "type": "default" } } } }, { "path": "app_login/index", "style": { "navigationBarTitleText": "绑定手机号", "navigationStyle": "custom", "app-plus": { "titleNView": { "type": "default" } } } }, { "path": "app_update/app_update", "style": { "navigationBarTitleText": "检查更新", "app-plus": { "titleNView": { "type": "default" } } } }, { "path": "settled/index", "style": { "navigationBarTitleText": "商户入驻", "navigationStyle": "custom", "enablePullDownRefresh": false, "app-plus": { "titleNView": { "type": "default" } } } }, { "path": "settledlist/index", "style": { "navigationBarTitleText": "营养师入驻", "navigationStyle": "custom", "enablePullDownRefresh": false, "app-plus": { "titleNView": { "type": "default" } } } }, { "path": "user_sgin_info/index", "style": { "navigationBarTitleText": "签到说明", "app-plus": { "titleNView": { "type": "default" } } } }, { "path": "user_coupon/index", "style": { "navigationBarTitleText": "我的优惠券", "app-plus": { "titleNView": { "type": "default" } } } }, { "path": "search/search", "style": { "navigationBarTitleText": "" } } ] }, { "root": "pages/merchant", "name": "merchant", "pages": [{ "path": "home/index", "style": { "navigationBarTitleText": "商户首页", "navigationStyle": "custom", "enablePullDownRefresh": false } }, { "path": "classify_coupon/index", "style": { "navigationBarTitleText": "商品分类", "navigationStyle": "custom", "enablePullDownRefresh": false, "app-plus": { "titleNView": { "type": "default" } } } }, { "path": "application_record/index", "style": { "navigationBarTitleText": "申请记录", "enablePullDownRefresh": false, "app-plus": { "titleNView": { "type": "default" } } } }, { "path": "application_record/list", "style": { "navigationBarTitleText": "申请记录", "enablePullDownRefresh": false, "app-plus": { "titleNView": { "type": "default" } } } }, { "path": "detail/index", "style": { "navigationStyle": "custom", "navigationBarTitleText": "商户详情", "navigationBarBackgroundColor": "#000", "navigationBarTextStyle": "white", "app-plus": { "titleNView": { "type": "default" } } } }, { "path": "user_integral/index", "style": { "navigationBarTitleText": "积分详情", "app-plus": { "titleNView": { "type": "default" } } } }, { "path": "user_sgin/index", "style": { "navigationBarTitleText": "签到", "app-plus": { "titleNView": { "type": "default" } } } }, { "path": "user_sgin_list/index", "style": { "navigationBarTitleText": "签到记录", "app-plus": { "titleNView": { "type": "default" } } } }, { "path": "merchant_street/index", "style": { "navigationBarTitleText": "店铺街", "app-plus": { "titleNView": { "type": "default" } } } } ] }, { "root": "pages/goods", "pages": [{ "path": "goods_details/index", "style": { "navigationBarTitleText": "商品详情", "navigationStyle": "custom" } }, { "path": "goods_list/index", "style": { "navigationBarTitleText": "商品搜索", "navigationBarTextStyle": "black", "navigationStyle": "custom", "app-plus": { "titleNView": { "type": "default" } } } }, { "path": "coupon_goods_list/index", "style": { "navigationBarTitleText": "商品搜索", "navigationBarBackgroundColor": "#fff", "navigationBarTextStyle": "black", "app-plus": { "titleNView": { "type": "default" } } } }, { "path": "systemIframe/index", "style": { "navigationBarTitleText": "系统表单", "app-plus": { "titleNView": { "type": "default" } } } }, { "path": "goods_search/index", "style": { "navigationBarTitleText": "搜索商品", "navigationStyle": "custom", "app-plus": { "titleNView": { "type": "default" } } } }, { "path": "news_list/index", "style": { "navigationBarTitleText": "资讯", "app-plus": { "titleNView": { "type": "default" } } } }, { "path": "news_details/index", "style": { "navigationBarTitleText": "资讯详情", "app-plus": { "titleNView": { "type": "default" } } } }, { "path": "browsing_history/index", "style": { "navigationBarTitleText": "浏览记录", "backgroundColor": "#FFFFFF", "app-plus": { "titleNView": { "type": "default" } } } }, { "path": "order_list/index", "style": { "navigationBarTitleText": "我的订单", "app-plus": { "titleNView": { "type": "default" } } } }, { "path": "order_logistics/index", "style": { "navigationBarTitleText": "发货记录", "app-plus": { "titleNView": { "type": "default" } } } }, { "path": "order_confirm/index", "style": { "navigationBarTitleText": "提交订单", "navigationStyle": "custom" } }, { "path": "order_payment/index", "style": { "navigationBarTitleText": "支付订单", "navigationBarTextStyle": "black", "navigationBarBackgroundColor": "#fff", "app-plus": { "titleNView": { "type": "default" } } } }, { "path": "refund_details/index", "style": { "navigationBarTitleText": "售后详情", "navigationBarBackgroundColor": "#fff", "app-plus": { "titleNView": { "type": "default" } } } }, { "path": "order_pay_status/index", "style": { "navigationBarTitleText": "支付结果", "navigationBarBackgroundColor": "#f5f5f5", "app-plus": { "titleNView": { "type": "default" } } } }, { "path": "order_details/index", "style": { "navigationBarTitleText": "订单详情", "app-plus": { "titleNView": { "type": "default" } } } }, { "path": "virtual_order_details/index", "style": { "navigationBarTitleText": "订单详情", "app-plus": { "titleNView": { "type": "default" } } } }, { "path": "user_return_list/index", "style": { "navigationBarTitleText": "售后列表", "app-plus": { "titleNView": { "type": "default" } } } }, { "path": "goods_return/index", "style": { "navigationBarTitleText": "售后退款", "app-plus": { "titleNView": { "type": "default" } } } }, { "path": "after_sales_type/index", "style": { "navigationBarTitleText": "售后类型", "app-plus": { "titleNView": { "type": "default" } } } }, { "path": "returns_and_refunds/index", "style": { "navigationBarTitleText": "退货退款", "app-plus": { "titleNView": { "type": "default" } } } }, { "path": "goods_comment_con/index", "style": { "navigationBarTitleText": "商品评价", "app-plus": { "titleNView": { "type": "default" } } } }, { "path": "evaluation_list/index", "style": { "navigationBarTitleText": "评价列表", "app-plus": { "titleNView": { "type": "default" } } } }, { "path": "goods_comment_list/index", "style": { "navigationBarTitleText": "商品评分", "app-plus": { "titleNView": { "type": "default" } } } }, { "path": "goods_logistics/index", "style": { "navigationBarTitleText": "物流信息", "app-plus": { "titleNView": { "type": "default" } } } }, { "path": "send_record/index", "style": { "navigationBarTitleText": "发货记录", "app-plus": { "titleNView": { "type": "default" } } } }, { "path": "agreement_rules/index", "style": { "navigationBarTitleText": "隐私协议", "app-plus": { "titleNView": { "type": "default" } } } }, { "path": "user_goods_collection/index", "style": { "navigationBarTitleText": "收藏商品", "app-plus": { "titleNView": { "type": "default" } } } }, { "path": "user_merchant_collection/index", "style": { "navigationBarTitleText": "收藏店铺", "app-plus": { "titleNView": { "type": "default" } } } }, { "path": "alipay_return/alipay_return", "style": { "navigationBarTitleText": "", "enablePullDownRefresh": false } }, { "path": "alipay_invoke/index", "style": { "navigationBarTitleText": "", "enablePullDownRefresh": false } }, { "path": "agreement_info/index", "style": { "navigationBarTitleText": "", "app-plus": { "titleNView": { "type": "default" } } } }, { "path": "user_grade/index", "style": { "navigationBarTitleText": "我的等级", "navigationBarBackgroundColor": "#181818", "navigationBarTextStyle": "white", "app-plus": { "titleNView": { "type": "default" } } } }, { "path": "exp_record/index", "style": { "navigationBarTitleText": "经验值明细", "app-plus": { "titleNView": { "type": "default" } } } }, { "path": "level_rule/index", "style": { "navigationBarTitleText": "等级规则说明", "navigationBarBackgroundColor": "#282828", "navigationBarTextStyle": "white", "app-plus": { "titleNView": { "type": "default" } } } } ] }, { "root": "pages/address", "name": "address", "pages": [{ "path": "user_address_list/index", "style": { "navigationBarTitleText": "地址管理", "app-plus": { "titleNView": { "type": "default" } } } }, { "path": "user_address/index", "style": { "navigationBarTitleText": "添加地址", "app-plus": { "titleNView": { "type": "default" } } } } ] }, { "root": "pages/activity", "name": "activity", "pages": [{ "path": "goods_seckill/index", "style": { "navigationBarTitleText": "秒杀列表", "navigationStyle": "custom", "navigationBarTextStyle": "black" } }, { "path": "mer-good-seckill/index", "style": { "navigationBarTitleText": "秒杀列表", "navigationStyle": "custom", "navigationBarTextStyle": "black" } }, { "path": "goods_group/index", "style": { "navigationBarTitleText": "拼团活动", "navigationStyle": "custom", "navigationBarTextStyle": "black" } }, { "path": "liveBroadcast/index", "style": { "navigationBarTitleText": "列表", "navigationBarBackgroundColor": "#F2F2F2" } }, { "path": "status/index", "style": { "navigationBarTitleText": "拼团活动", "app-plus": { "titleNView": { "type": "default" } } } }, { "path": "couponList/index", "style": { "navigationBarTitleText": "领券中心", "navigationBarTextStyle": "black", "navigationBarBackgroundColor": "#F2F2F2", "app-plus": { "titleNView": { "type": "default" } } } }, { "path": "small_page/index", "style": { "navigationBarTitleText": "", "enablePullDownRefresh": false, "app-plus": { "titleNView": { "type": "default" } } } }, { "path": "vip_paid/index", "style": { "navigationBarTitleText": "SVIP会员", "navigationStyle": "custom", "app-plus": { "titleNView": { "type": "default" } } } }, { "path": "vip_paid_benefits/index", "style": { "navigationBarTitleText": "会员权益", "navigationStyle": "custom", "app-plus": { "titleNView": { "type": "default" } } } }, { "path": "vip_order_record/index", "style": { "navigationBarTitleText": "会员购买记录", "app-plus": { "titleNView": { "type": "default" } } } }, { "path": "points_mall/index", "style": { "navigationBarTitleText": "积分商城", "navigationStyle": "custom" } }, { "path": "goods_points/index", "style": { "navigationBarTitleText": "热门推荐", "navigationStyle": "custom", "navigationBarTextStyle": "black" } }, { "path": "integral_activity/index", "style": { "navigationBarTitleText": "积分活动", "navigationStyle": "custom", "navigationBarTextStyle": "black" } } ] }, { "root": "pages/discover", "name": "discover", "pages": [{ "path": "discover_search_list/index", "style": { "navigationBarTitleText": "搜索页面", "app-plus": { "titleNView": { "type": "default" } } } }, { "path": "discover_release/index", "style": { "navigationBarTitleText": "内容发布", "app-plus": { "titleNView": { "type": "default" } } } }, { "path": "discover_video/routineVideo/index", "style": { "navigationBarTitleText": "逛逛短视频", "navigationStyle": "custom", "app-plus": { "titleNView": false, "bounce": "none" } } }, { "path": "discover_video/appVideo/index", "style": { "navigationBarTitleText": "逛逛短视频", "navigationStyle": "custom", "navigationBarTextStyle": "black", "app-plus": { "titleNView": false, "bounce": "none" } } }, { "path": "discover_user/index", "style": { "navigationBarTitleText": "个人主页", "navigationStyle": "custom" } }, { "path": "discover_follow/index", "style": { "navigationBarTitleText": "我的关注", "app-plus": { "titleNView": { "type": "default" } } } }, { "path": "discover_note_topic/index", "style": { "navigationBarTitleText": "话题", "app-plus": { "titleNView": { "type": "default" } } } }, { "path": "discover_details/index", "style": { "navigationBarTitleText": "内容详情", "app-plus": { "titleNView": { "type": "default" } } } } ] }, { "root": "pages/admin", "name": "admin", "pages": [{ "path": "work/index", "style": { "navigationBarTitleText": "工作台", "navigationStyle": "custom" } }, { "path": "skipRefund/index", "style": { "navigationBarTitleText": "售后订单", "navigationStyle": "custom" } }, { "path": "order/index", "style": { "navigationBarTitleText": "订单管理", "navigationStyle": "custom" } }, { "path": "logistics/index", "style": { "navigationBarTitleText": "物流信息", "app-plus": { "titleNView": { "type": "default" } } } }, { "path": "logistics/detail", "style": { "navigationBarTitleText": "发货记录", "navigationStyle": "custom", "app-plus": { "titleNView": { "type": "default" } } } }, { "path": "logistics/record", "style": { "navigationBarTitleText": "发货记录", "navigationStyle": "custom", "app-plus": { "titleNView": { "type": "default" } } } }, { "path": "refund/index", "style": { "navigationBarTitleText": "立即退款", "app-plus": { "titleNView": { "type": "default" } } } }, { "path": "order/send", "style": { "navigationBarTitleText": "发货", "app-plus": { "titleNView": { "type": "default" } } } }, { "path": "order/detail", "style": { "navigationStyle": "custom" } }, { "path": "after_sale/index", "style": { "navigationBarTitleText": "售后订单", "navigationStyle": "custom" } }, { "path": "statistics/index", "style": { "navigationStyle": "custom", "navigationBarTitleText": "销售额统计", "app-plus": { "titleNView": { "type": "default" } } } }, { "path": "cancel/index", "style": { "navigationBarTitleText": "订单核销", "app-plus": { "titleNView": { "type": "default" } } } }, { "path": "cancel/list", "style": { "navigationBarTitleText": "核销订单", "app-plus": { "titleNView": { "type": "default" } } } }, { "path": "cancel/result", "style": { "navigationBarTitleText": "核销结果", "app-plus": { "titleNView": { "type": "default" } } } }, { "path": "refundOrderDetail/index", "style": { "navigationStyle": "custom" } }, { "path": "goods/index", "style": { "navigationStyle": "custom", "navigationBarTitleText": "商品管理" } }, { "path": "goods/specs", "style": { "navigationBarTitleText": "修改价格/库存", "navigationBarBackgroundColor": "#F5F5F5", "app-plus": { "titleNView": { "type": "default" } } } }, { "path": "goods/inventory", "style": { "navigationBarTitleText": "增加库存", "navigationBarBackgroundColor": "#F5F5F5", "app-plus": { "titleNView": { "type": "default" } } } } ] }, { "root": "pages/auth", "name": "authindex", "pages": [{ "path": "index", "style": { "navigationBarTitleText": "CRMEB" } }] } ], "globalStyle": { "navigationBarTextStyle": "black", "navigationBarTitleText": "crmeb", "navigationBarBackgroundColor": "#fff", "backgroundColor": "#F8F8F8", "app-plus": { "scrollIndicator": "none" } }, "tabBar": { "custom": false, "color": "#282828", "selectedColor": "#fc4141", "borderStyle": "white", "backgroundColor": "#ffffff", "list": [{ "pagePath": "pages/home/index", "iconPath": "/static/tabBar/riFill-home-3-fill@1x.png", "selectedIconPath": "/static/tabBar/riFill-home-3-fill@1x (2).png", "text": "首页" }, { "pagePath": "pages/course/index", "iconPath": "/static/tabBar/riFill-video-fill@1x (2).png", "selectedIconPath": "/static/tabBar/riFill-video-fill@1x.png", "text": "课程" }, { "pagePath": "pages/release/index", "iconPath": "/static/tabBar/riFill-add-circle-fill 1@1x.png", "selectedIconPath": "/static/tabBar/riFill-add-circle-fill 1@1x (2).png", "text": "发布" }, { "pagePath": "pages/message/message", "iconPath": "/static/tabBar/riFill-message-2-fill@1x (2).png", "selectedIconPath": "/static/tabBar/riFill-message-2-fill@1x.png", "text": "消息" }, { "pagePath": "pages/user/list", "iconPath": "/static/tabBar/riFill-account-circle-fill@1x (2).png", "selectedIconPath": "/static/tabBar/riFill-account-circle-fill@1x.png", "text": "我的" } ] }, "condition": { "current": 0, "list": [{ "name": "", "path": "", "query": "" }] } }这是我pages代码应该怎么加subNVue
最新发布
10-31
评论
成就一亿技术人!
拼手气红包6.0元
还能输入1000个字符
 
红包 添加红包
表情包 插入表情
 条评论被折叠 查看
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

We Never say die

你的鼓励将是我创作的最大动力

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值