From 980feee20b1dc5b148e4a76a09353e4cd52dc313 Mon Sep 17 00:00:00 2001 From: shijing Date: Tue, 28 Oct 2025 15:34:39 +0800 Subject: [PATCH] =?UTF-8?q?fix:=E7=A6=85=E9=81=93139=E9=85=8D=E7=BD=AE?= =?UTF-8?q?=E5=B7=A5=E8=89=BA=EF=BC=8C=E6=96=B0=E5=A2=9E=E7=9A=84=E6=97=B6?= =?UTF-8?q?=E5=80=99=EF=BC=8C=E5=A6=82=E6=9E=9C=E6=98=AF=E5=88=87=E5=88=86?= =?UTF-8?q?=E5=B7=A5=E8=89=BA=E5=B0=B1=E8=AE=A9=E4=BB=96=E7=BC=96=E8=BE=91?= =?UTF-8?q?=E5=88=87=E5=88=86=E6=95=B0=E9=87=8F=EF=BC=8C=E5=A6=82=E6=9E=9C?= =?UTF-8?q?=E6=98=AF=E5=B8=B8=E8=A7=84=E5=B7=A5=E8=89=BA=E5=B0=B1=E4=B8=8D?= =?UTF-8?q?=E8=AE=A9=E7=BC=96=E8=BE=91?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/views/mtm/route_form.vue | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/src/views/mtm/route_form.vue b/src/views/mtm/route_form.vue index 762659cb..c866557a 100644 --- a/src/views/mtm/route_form.vue +++ b/src/views/mtm/route_form.vue @@ -116,6 +116,7 @@ @@ -351,6 +352,7 @@ export default { }, visible: false, isSaveing: false, + divDisable:false, materialsIn: [], materialsOut: [], mgroups: [], @@ -451,6 +453,11 @@ export default { that.options.forEach((item) => { if (item.id == that.form.process) { that.processName = item.name; + if(item.mtype==20){ + that.divDisable = false; + }else{ + that.divDisable = true; + } } }) },