需要做一个这样的需求,但是出现了点击事件不触发的情况,开始以为是van-swipe-cell的原因,后来发现uni-list-chat放外面也没有触发点击事件,仔细查文档才发现需要配置 :clickable="true",不仔细看文档的话属实有点坑
<van-swipe-cell v-for="(item, index) in 5" :key="index">
<uni-list-chat :clickable="true" @click="goChat1" style="height:144rpx;" :avatar-circle="true" title="张某某"
avatar="../../static/images/chat/avartor2.png" :state="index < 3 ? 1 : 2" note="您收到一条新的消息"
time="2020-02-02 20:20" badge-text="12">
</uni-list-chat>
<template #right>
<van-button @click="pingjia" style="height:144rpx;" square type="danger">
<p>评价</p>
<p>对话</p>
</van-button>
<van-button style="height:144rpx;" square type="primary" text="删除对话">
<p>删除</p>
<p>对话</p>
</van-button>
</template>
</van-swipe-cell>