feat: 工艺设计产品列显示full_name

This commit is contained in:
caoqianming 2024-04-07 19:26:31 +08:00
parent d452eea5b6
commit d1e9fd5a2d
1 changed files with 1 additions and 1 deletions

View File

@ -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
})