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/GyCustomer/CustomerEdit/index.vue | 14 +++++++-------
1 files changed, 7 insertions(+), 7 deletions(-)
diff --git a/src/views/GyCustomer/CustomerEdit/index.vue b/src/views/GyCustomer/CustomerEdit/index.vue
index 5c5c5c0..8d1f30f 100644
--- a/src/views/GyCustomer/CustomerEdit/index.vue
+++ b/src/views/GyCustomer/CustomerEdit/index.vue
@@ -557,7 +557,7 @@
},
loadOrganizations() {
- axios.get(`${this.baseURL}/Web/GetOrganizations`)
+ axios.get(`${this.$baseUrl}/Web/GetOrganizations`)
.then(response => {
if (response.data.count === 1) {
this.organizationList = response.data.data
@@ -617,7 +617,7 @@
getMaxBillID() {
- axios.get(`${this.baseURL}/Gy_Customer/GetMAXBillID`)
+ axios.get(`${this.$baseUrl}/Gy_Customer/GetMAXBillID`)
.then(response => {
console.log('Max Bill ID:', response.data)
})
@@ -628,7 +628,7 @@
// 璁剧疆娴佹按鍙�
setHNumber(typeID) {
- axios.get(`${this.baseURL}/Gy_Customer/getMaxNum`, {
+ axios.get(`${this.$baseUrl}/Gy_Customer/getMaxNum`, {
params: {
HCusTypeID: typeID,
user: this.user,
@@ -646,7 +646,7 @@
},
loadEditData(interId) {
- axios.get(`${this.baseURL}/Gy_Customer/xg_extendCheckEmp`, {
+ axios.get(`${this.$baseUrl}/Gy_Customer/xg_extendCheckEmp`, {
params: { HInterID: interId }
})
.then(response => {
@@ -729,12 +729,12 @@
const formData = { ...this.formData }
formData.HStopflag = formData.HStopflag ? 'true' : 'false'
- let url = `${this.baseURL}/Gy_Customer/AddBill`
+ let url = `${this.$baseUrl}/Gy_Customer/AddBill`
let params = { oMain: JSON.stringify(formData) + ';' + this.user }
if (this.operationType === 3) {
// 缂栬緫淇濆瓨
- url = `${this.baseURL}/Gy_Customer/AddBill1`
+ url = `${this.$baseUrl}/Gy_Customer/AddBill1`
params = {
oMain: JSON.stringify(formData) + ';' + this.linterid + ';' + this.user + ';Gy_Customer_Edit'
}
@@ -829,7 +829,7 @@
// 瀹℃牳
handleAudit() {
- axios.get(`${this.baseURL}/Gy_Customer/AuditGy_Customer`, {
+ axios.get(`${this.$baseUrl}/Gy_Customer/AuditGy_Customer`, {
params: {
HInterID: this.linterid,
IsAudit: 0,
--
Gitblit v1.9.1