uniapp+uview自定义带搜索框的导航栏跳转无效

<u-sticky offset-top="35">
            <!-- 搜索框 -->
            <view class="search-wrap" style="height: 'this.navigationBarHeight'+%;">
                <u-search placeholder="请输入你想要搜索的商品" v-model="keyword" :show-action="false" height="20"
                    @click="showSearch" disabled='true'></u-search>
            </view>
            <!-- 头部 tabs-->
            <view class="header">
                <u-tabs :list="tabsList" @click="tabsClick"></u-tabs>
            </view>
        </u-sticky>
showSearch() {
                uni.navigateTo({
                    url: "/pages/searchPage/index"
                })
                fail(e){
                    console.log(e);
                }
                console.log('搜索跳转');
            },
page.json
    {
            "path": "pages/homePage/index",
            "style": {
                "navigationStyle": "custom",
                "navigationBarTitleText": "首页",
                "navigationBarBackgroundColor": "#007AFF"
            }
        },
{
            "path": "pages/searchPage/index",
            "style": {
                "navigationStyle": "default",
                "navigationBarTitleText": "搜索页",
                "navigationBarBackgroundColor": "#F8F8F8"
            }
        }

你这个路径pages/searchPage/index,是写在tabList吗