fix: 还原退款

This commit is contained in:
duanshuwen
2025-10-07 17:24:07 +08:00
parent f95a51cad8
commit f095e12b46

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 ? "点击退款" : "我知道了"));