From bb40eba5dd2ec75a6fa2cd2c8eb41d769c092fca Mon Sep 17 00:00:00 2001
From: chenhaozhe <cgz@hz-kingdee.com>
Date: 星期五, 05 十二月 2025 09:33:40 +0800
Subject: [PATCH] Merge branch 'master' of http://101.37.171.70:10101/r/MES-WEB-VUEUI

---
 src/views/GyCustomer/index.vue |   13 +++++++++----
 1 files changed, 9 insertions(+), 4 deletions(-)

diff --git a/src/views/GyCustomer/index.vue b/src/views/GyCustomer/index.vue
index e14f775..da1288c 100644
--- a/src/views/GyCustomer/index.vue
+++ b/src/views/GyCustomer/index.vue
@@ -351,7 +351,7 @@
         title: "瀵煎叆",
         isUploading: false,
         updateSupport: 0,
-        url: "http://47.96.97.237/API/Gy_Customer/Gy_Customer_Excel",
+        url: "",
       },
       uploadData: [],
       uploadTableLoading: false,
@@ -366,14 +366,19 @@
     }
   },
   created() {
+    this.upload.url = this.baseURL + "Gy_Customer/Gy_Customer_Excel";
     this.fetchData();
   },
   methods: {
     fetchData() {
       axios
-        .get(
-          "http://47.96.97.237/API/Web/GetUser?UserName=001&PassWord=123456&HOrgName=100038"
-        )
+        .get(this.baseURL + "Web/GetUser", {
+          params: {
+            UserName: sessionStorage.getItem("UserName") || "admin",
+            PassWord: "123456",
+            HOrgName: sessionStorage.getItem("OrganizationID") || "100038"
+          }
+        })
         .then((response) => {
           let data = response.data.data[0];
           this.user = data.Czymc;

--
Gitblit v1.9.1