573bug
This commit is contained in:
parent
0194a9b146
commit
de1868eb5c
|
@ -545,6 +545,13 @@ export default {
|
||||||
},
|
},
|
||||||
// 新修改
|
// 新修改
|
||||||
UpdateData (item) {
|
UpdateData (item) {
|
||||||
|
console.log(item.infoList, '====================================wpwpwp')
|
||||||
|
// 去重
|
||||||
|
const newArr = item.infoList.filter((element, index, self) => {
|
||||||
|
return self.findIndex(x => x.attrType === element.attrType) === index
|
||||||
|
})
|
||||||
|
item.infoList = newArr
|
||||||
|
console.log(item.infoList, '====================================wpwpwp')
|
||||||
this.$http.get('/category/getCategoryTree').then(res => {
|
this.$http.get('/category/getCategoryTree').then(res => {
|
||||||
this.insertList = res.data.data.filter(item => item.name === '组件服务一')[0]
|
this.insertList = res.data.data.filter(item => item.name === '组件服务一')[0]
|
||||||
this.radio = item.infoList.filter(val => val.attrType === '组件类型')[0].attrValue
|
this.radio = item.infoList.filter(val => val.attrType === '组件类型')[0].attrValue
|
||||||
|
|
Loading…
Reference in New Issue