From 7fb0a8f0ab16c149484bf043754cd10cfa94de2f Mon Sep 17 00:00:00 2001
From: wangyi <2946747746@qq.com>
Date: 星期一, 19 一月 2026 14:48:05 +0800
Subject: [PATCH] 增加了业务员,保管员和验收员的对应的显示

---
 src/views/FbStepFoldinBillList/SupplierDialog.vue |    6 +++---
 1 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/src/views/FbStepFoldinBillList/SupplierDialog.vue b/src/views/FbStepFoldinBillList/SupplierDialog.vue
index e88df1a..8b1465a 100644
--- a/src/views/FbStepFoldinBillList/SupplierDialog.vue
+++ b/src/views/FbStepFoldinBillList/SupplierDialog.vue
@@ -316,7 +316,7 @@
     // 鑾峰彇缁勭粐鍒楄〃
     async getOrganizations() {
       try {
-        const response = await axios.get(`${this.baseURL}/Web/GetOrganizations`)
+        const response = await axios.get(`${this.$baseUrl}/Web/GetOrganizations`)
         if (response.data.count === 1) {
           this.organizations = response.data.data
           // 璁剧疆榛樿缁勭粐
@@ -335,7 +335,7 @@
     // 鑾峰彇渚涘簲鍟嗘爲褰㈡暟鎹�
     async getSupplierTree() {
       try {
-        const response = await axios.get(`${this.baseURL}/Gy_BadReason/Gy_SupTypeTreeListByLevel`)
+        const response = await axios.get(`${this.$baseUrl}/Gy_BadReason/Gy_SupTypeTreeListByLevel`)
         if (response.data.count === 1) {
           this.treeData = JSON.parse(response.data.data)
         }
@@ -356,7 +356,7 @@
           size: this.pageSize
         }
         console.log('璇锋眰鍙傛暟:', params)
-        const response = await axios.get(`${this.baseURL}/Gy_Supplier/page`, { params })
+        const response = await axios.get(`${this.$baseUrl}/Gy_Supplier/page`, { params })
 
         if (response.data.code == 1) {
           this.tableData = response.data.data || []

--
Gitblit v1.9.1