diff --git a/dashboard/src2/components/SiteRenewalDialog.vue b/dashboard/src2/components/SiteRenewalDialog.vue index 54ad0d8..480e8e0 100644 --- a/dashboard/src2/components/SiteRenewalDialog.vue +++ b/dashboard/src2/components/SiteRenewalDialog.vue @@ -337,7 +337,6 @@ export default { url: 'jcloud.api.billing.process_balance_payment_for_renew_order', params: {}, validate() { - console.log('验证订单信息:', this.order); if (!this.order || !this.order.order_id) { throw new DashboardError('缺少订单信息'); } @@ -363,9 +362,6 @@ export default { // 更新UI状态,显示成功信息(不再显示toast) this.isProcessingPayment = false; this.paymentSuccess = true; - console.log('余额支付成功,更新状态:', { - paymentSuccess: this.paymentSuccess - }); }, onError(error) { this.error = error.message || '余额支付处理失败';