mirror of
https://codeup.aliyun.com/67762337eccfc218f6110e0e/vue/learning-system-mobile.git
synced 2025-12-09 10:56:47 +08:00
阻止事件触发
This commit is contained in:
@@ -42,7 +42,7 @@
|
||||
<text style="font-size: 24upx;color: #999;margin-right: 35upx;">分享给{{item.toAname}}</text>
|
||||
</view>
|
||||
<view class="rowbtn-right">
|
||||
<view class="withdraw" v-if="item.isRead" @click="withdraw(item)">
|
||||
<view class="withdraw" v-if="item.isRead" @click.stop="withdraw(item)">
|
||||
<image src="../../static/images/icon/withdrawnew.png" mode=""></image>撤回
|
||||
</view>
|
||||
<view v-if="item.isRead" class="Viewed">
|
||||
@@ -67,7 +67,7 @@
|
||||
<text style="font-size: 24upx;color: #999;margin-top: 10upx;" @click="toQaDetail(item.question)">分享给{{item.toAname}}</text>
|
||||
</view>
|
||||
<view class="rowbtn-right" style="margin-left: auto;">
|
||||
<view class="withdraw" v-if="!item.isRead" @click="withdraw(item)">
|
||||
<view class="withdraw" v-if="!item.isRead" @click.stop="withdraw(item)">
|
||||
<image src="../../static/images/icon/withdrawnew.png" mode=""></image>撤回
|
||||
</view>
|
||||
<view v-if="item.isRead" class="Viewed">
|
||||
|
||||
Reference in New Issue
Block a user