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/gyMaterial/GyMaterialCorrection.vue | 8 ++++----
1 files changed, 4 insertions(+), 4 deletions(-)
diff --git a/src/views/gyMaterial/GyMaterialCorrection.vue b/src/views/gyMaterial/GyMaterialCorrection.vue
index 54b777f..ae9f2a7 100644
--- a/src/views/gyMaterial/GyMaterialCorrection.vue
+++ b/src/views/gyMaterial/GyMaterialCorrection.vue
@@ -418,7 +418,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.organizationOptions = response.data.data
if (this.organizationOptions.length > 0) {
@@ -473,7 +473,7 @@
try {
const sWhere = this.buildWhereCondition()
- const response = await axios.get(`${this.baseURL}/Gy_Material/page`, {
+ const response = await axios.get(`${this.$baseUrl}/Gy_Material/page`, {
params: {
sWhere: sWhere,
user: this.user,
@@ -656,7 +656,7 @@
}
const dataStr = JSON.stringify(saveData)
- const response = await axios.post(`${this.baseURL}/Gy_Material/SaveGy_MaterialList_Batch`, {
+ const response = await axios.post(`${this.$baseUrl}/Gy_Material/SaveGy_MaterialList_Batch`, {
msg: dataStr + ';' + this.user + ';' + this.queryParams.HOrgID
})
@@ -686,7 +686,7 @@
type: 'warning'
})
for (const row of this.selectedRows) {
- await axios.get(`${this.baseURL}/Gy_Material/Delete`, {
+ await axios.get(`${this.$baseUrl}/Gy_Material/Delete`, {
params: {
HItemID: row.HItemID,
user: this.user
--
Gitblit v1.9.1