feat(主播成员收入页): 修复点击抽屉弹窗会消失的问题

This commit is contained in:
hzj 2025-10-30 20:03:34 +08:00
parent 5cc4497df7
commit 0623bbc316

View File

@ -143,7 +143,7 @@
</div>
<!-- 账单详情模态框 (使用 TeamBillMore 组件) -->
<div v-if="showDetailModal" style="position: fixed; bottom: 0; width: 100%">
<div v-if="showDetailModal" style="position: fixed; bottom: 0; width: 100%" @click.stop>
<TeamBillMore
:billData="selectedBill"
@close="closeModal"
@ -300,7 +300,7 @@ const fetchBillWorkMembers = async (billId) => {
//
const getStatusText = (status) => {
const statusInfo = formatBillStatus(status)
return t(statusInfo.textKey) // 使
return statusInfo.textKey // 使
}
//