From d1e9fd5a2d3d1799fdd06943f584de27d9a5e0a2 Mon Sep 17 00:00:00 2001 From: caoqianming Date: Sun, 7 Apr 2024 19:26:31 +0800 Subject: [PATCH] =?UTF-8?q?feat:=20=E5=B7=A5=E8=89=BA=E8=AE=BE=E8=AE=A1?= =?UTF-8?q?=E4=BA=A7=E5=93=81=E5=88=97=E6=98=BE=E7=A4=BAfull=5Fname?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/views/mtm/route.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/views/mtm/route.vue b/src/views/mtm/route.vue index 3760dc5b..e1c15904 100644 --- a/src/views/mtm/route.vue +++ b/src/views/mtm/route.vue @@ -182,7 +182,7 @@ export default { getProducts() { this.$API.mtm.material.list.req({ page: 0, need_route: true }).then(res => { res.forEach(m => { - m.label = m.name+'|'+m.specification+'|'+m.model; + m.label = m.full_name; }) this.productOptions = res })