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/component/gyDuty/index.vue | 4 ++--
1 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/src/views/component/gyDuty/index.vue b/src/views/component/gyDuty/index.vue
index effbc39..4cd3c04 100644
--- a/src/views/component/gyDuty/index.vue
+++ b/src/views/component/gyDuty/index.vue
@@ -176,7 +176,7 @@
// 鑾峰彇鏍戠姸鍥剧粨鏋�
async getTreeList() {
this.treeData = []
- let res = await axios.get(this.baseURL + "/Gy_DutyBill/Gy_DutyBillTreeList");
+ let res = await axios.get(this.$baseUrl + "/Gy_DutyBill/Gy_DutyBillTreeList");
console.log(res.data.data);
this.treeData = [...JSON.parse(res.data.data)];
Object.assign(this.treeProps, {
@@ -193,7 +193,7 @@
sWhere += " and 缁勭粐鏋舵瀯浠g爜 like'" + this.form.userId + "%' ";
}
axios
- .get(this.baseURL + "/Gy_DutyBill/Gy_DutyBillList", {
+ .get(this.$baseUrl + "/Gy_DutyBill/Gy_DutyBillList", {
params: { sWhere: sWhere, user: this.user },
})
.then((response) => {
--
Gitblit v1.9.1