From ba988d0fd1c847648971067123c5b870d6c4f6b8 Mon Sep 17 00:00:00 2001 From: shijing Date: Mon, 9 Feb 2026 13:14:20 +0800 Subject: [PATCH] =?UTF-8?q?fix:=E4=BA=A7=E5=93=81=E5=BA=93=E5=AD=98?= =?UTF-8?q?=E6=9F=A5=E8=AF=A2=E6=8C=89=E5=B7=A5=E5=BA=8F=E7=BB=9F=E8=AE=A1?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/views/statistics/bxerp/inmTotal.vue | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/views/statistics/bxerp/inmTotal.vue b/src/views/statistics/bxerp/inmTotal.vue index c55314cf..7e3a2f0a 100644 --- a/src/views/statistics/bxerp/inmTotal.vue +++ b/src/views/statistics/bxerp/inmTotal.vue @@ -42,10 +42,10 @@ export default { methods: { getMgroup() { let that = this; - that.$API.mtm.mgroup.list.req({ page: 0,query:'{name}' }).then(res => { - let end = res.length-1; - let arr = res.slice(13,end); - that.mgroups = arr.forEach(item=>{ + that.$API.mtm.process.list.req({ page: 0,parent__isnull:true,query:'{name}' }).then(res => { + let end = res.length; + let arr = res.slice(14,end); + that.process = arr.forEach(item=>{ that.lists.push(item.name); }); });