From 7f7a4798f84a350e0aadce28237d1d20f21e6e6e Mon Sep 17 00:00:00 2001
From: gongchunyi <deslre0381@gmail.com>
Date: 星期六, 15 八月 2026 17:11:44 +0800
Subject: [PATCH] fix: 日期格式化

---
 src/views/customerService/feedbackRegistration/components/formDia.vue |    4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/views/customerService/feedbackRegistration/components/formDia.vue b/src/views/customerService/feedbackRegistration/components/formDia.vue
index 5932032..fd3091e 100644
--- a/src/views/customerService/feedbackRegistration/components/formDia.vue
+++ b/src/views/customerService/feedbackRegistration/components/formDia.vue
@@ -326,7 +326,7 @@
       form.value.customerId = null;
     }
     getSalesLedger({
-      customerId: form.value.customerId,
+      customerName: form.value.customerName,
     }).then(res => {
       if (res.code === 200) {
         associatedSalesOrderNumberOptions.value = res.data.records.map(item => ({
@@ -434,7 +434,7 @@
       form.value = { ...row };
       if (form.value.customerName) {
         const res = await getSalesLedger({
-          customerId: form.value.customerId,
+          customerName: form.value.customerName,
         });
         if (res?.code === 200) {
           console.log(res);

--
Gitblit v1.9.3