1、如圖,有兩個框,代表2個點擊事件,點擊退款按鈕的時候,彈窗出現,會執行外層的詳情頁面的跳轉
2、template:
<view class="orders-center-item" @click="see_more_msg(item)"> <view class="tuikuan" @tap.stop="tuikuan($event, item)">退款</view> </view>
methods:
//退款申請 tuikuan(e, item) { e.preventDefault(); this.tuikuan_showModal = true; this.refundApplicationList = item; },