uni-app page jump (click the button to jump to the page)

001 ==》 Click the button to jump to the page

<view class="" @tap="gotoLunBo">
    去轮播页
</view>

// 
methods:{
    gotoLunBo(){
        uni.navigateTo({
            // url: 'test?id=1&name=uniapp'  c传递参数

            url:"/pages/banpaiindex/banpaiindex"

        })
    }
},

//路径注意就行了
{
    "path" : "pages/banpaiindex/banpaiindex",
    "style" : {}
}

Guess you like

Origin www.cnblogs.com/ishoulgodo/p/12728016.html