From 5ff50b579c90a8c2cf2bb9aeef851785f3f7f54b Mon Sep 17 00:00:00 2001 From: caoqianming Date: Wed, 20 Dec 2023 15:20:22 +0800 Subject: [PATCH] =?UTF-8?q?feat:=20=E8=B7=AF=E7=BA=BF=E7=BC=96=E8=BE=91?= =?UTF-8?q?=E8=BF=94=E5=9B=9E=E7=89=A9=E6=96=99full=5Fname2?= 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 7fb2f3b4..870bbcc8 100644 --- a/src/views/mtm/route.vue +++ b/src/views/mtm/route.vue @@ -181,7 +181,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.name+'|'+m.specification+'|'+m.model; }) this.productOptions = res })