uniapp uni-list-item 点击事件无效
·
在处理我的页面时,点击关于我们,要跳转二级页面。结果点击跳转事件无效。

<uni-list>
<uni-list-item title="关于我们" showArrow @click="gotoPage()"> </uni-list-item>
<uni-list-item title="联系客服" note="9:00-21:00" showArrow @click="handleDialog()"> </uni-list-item>
</uni-list>
看文档需要在uni-list-item 中增加link
<uni-list>
<uni-list-item title="关于我们" showArrow @click="gotoPage()" link> </uni-list-item>
<uni-list-item title="联系客服" note="9:00-21:00" showArrow @click="handleDialog()"> </uni-list-item>
</uni-list>
完美解决!!
更多推荐
所有评论(0)