fix: 退款问题修复

This commit is contained in:
duanshuwen
2025-10-07 17:19:45 +08:00
parent 500c44ebea
commit f95a51cad8

View File

@@ -98,7 +98,7 @@ const refundAmount = computed(() => {
});
// 是否可退款
const isRefundable = computed(() => !props.orderData.refundable);
const isRefundable = computed(() => props.orderData.refundable);
// 按钮文件
const btnText = computed(() => (isRefundable.value ? "点击退款" : "我知道了"));