From 662ecdc00cd86f9362ae83574cf240da4cb00f7f Mon Sep 17 00:00:00 2001 From: hongchao <3228015117@qq.com> Date: Thu, 29 Jan 2026 10:39:29 +0800 Subject: [PATCH] =?UTF-8?q?=E9=80=80=E6=96=99=E5=8D=95=E4=BD=8D=E5=B7=A5?= =?UTF-8?q?=E7=A8=8B=E4=B8=8B=E6=8B=89=E4=BF=AE=E6=94=B9?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/views/material/back/component/home.vue | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/src/views/material/back/component/home.vue b/src/views/material/back/component/home.vue index d0bf107a..ce377a3e 100644 --- a/src/views/material/back/component/home.vue +++ b/src/views/material/back/component/home.vue @@ -208,11 +208,13 @@ import { getBackApplyList, - getProjectList, - getUnitList, backApplyRemove, submitBackApply } from '@/api/back/index.js' +import { + getProData, + getUnitData, +} from '@/api/lease/outbound.js' // import { getInfo, h } from '@/api/login' // import { // getUnitData, @@ -377,7 +379,7 @@ export default { const params = { // projectId: this.queryParams.proId /* */, } - const res = await getUnitList(params) + const res = await getUnitData(params) this.unitList = res.data }, unitChange(val){ @@ -390,7 +392,7 @@ export default { const params = { unitId: this.queryParams.unitId, } - const res = await getProjectList(params) + const res = await getProData(params) this.proList = res.data; this.queryParams.proId=null },