From cfa025e9af98a4a90a1be98af01c1771eaea4f04 Mon Sep 17 00:00:00 2001 From: fengyuan_yang <1976974459@qq.com> Date: Mon, 9 Feb 2026 13:58:20 +0800 Subject: [PATCH] =?UTF-8?q?2026-02-09=20=E6=94=B6=E8=B4=A7=E5=85=A5?= =?UTF-8?q?=E5=BA=93=E5=92=8C=E6=8B=A3=E8=B4=A7=E5=87=BA=E5=BA=93=E5=A2=9E?= =?UTF-8?q?=E5=8A=A0=E9=83=A8=E9=97=A8?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../soIssueNotify/searchIssureNotify.vue | 7 ++-- src/views/modules/qc/inboundNotification.vue | 2 +- src/views/modules/qc/outboundNotification.vue | 18 ++++++++++- .../report/inboundNotificationReport.vue | 32 +++++++++++++++++-- .../report/outboundNotificationReport.vue | 32 +++++++++++++++++-- 5 files changed, 83 insertions(+), 8 deletions(-) diff --git a/src/views/modules/orderIssure/soIssueNotify/searchIssureNotify.vue b/src/views/modules/orderIssure/soIssueNotify/searchIssureNotify.vue index e76c56d..0ffa66d 100644 --- a/src/views/modules/orderIssure/soIssueNotify/searchIssureNotify.vue +++ b/src/views/modules/orderIssure/soIssueNotify/searchIssureNotify.vue @@ -468,7 +468,7 @@ - + { if (data && data.code === 0) { - this.categoryList = data.rows || [] + this.categoryList = (data.rows || []).sort((a, b) => (a.crdcode || '').localeCompare(b.crdcode || '')) } }) }, diff --git a/src/views/modules/qc/inboundNotification.vue b/src/views/modules/qc/inboundNotification.vue index 4dc1231..2f119b2 100644 --- a/src/views/modules/qc/inboundNotification.vue +++ b/src/views/modules/qc/inboundNotification.vue @@ -2219,7 +2219,7 @@ loadCategoryList () { getInboundCategoryList({}).then(({data}) => { if (data && data.code === 0) { - this.categoryList = data.rows || [] + this.categoryList = (data.rows || []).sort((a, b) => (a.crdcode || '').localeCompare(b.crdcode || '')) } }) }, diff --git a/src/views/modules/qc/outboundNotification.vue b/src/views/modules/qc/outboundNotification.vue index c6759bd..5b45e14 100644 --- a/src/views/modules/qc/outboundNotification.vue +++ b/src/views/modules/qc/outboundNotification.vue @@ -58,6 +58,18 @@ + + + + + + + + { if (data && data.code === 0) { - this.categoryList = data.rows || [] + this.categoryList = (data.rows || []).sort((a, b) => (a.crdcode || '').localeCompare(b.crdcode || '')) } }) }, diff --git a/src/views/modules/report/inboundNotificationReport.vue b/src/views/modules/report/inboundNotificationReport.vue index 9f9c54f..abbf7b8 100644 --- a/src/views/modules/report/inboundNotificationReport.vue +++ b/src/views/modules/report/inboundNotificationReport.vue @@ -134,6 +134,18 @@ + + + + + + + + @@ -241,6 +253,7 @@